路由注册:允许指定有且只有GET/POST方法
archer-bao opened this issue · 3 comments
archer-bao commented
希望增加一种路由注册方法指定:有且只有GET/POST方法
比如/upload路由,在GET时返回上传页面,在POST时进行上传动作。除此之外不允许其他方法。
dotqi commented
mmc.GET("/putcustomer", ui.PutCustomer)
mmc.POST("/putcustomer", api.PutCustomer)
archer-bao commented
是注册一次,有且只有GET/POST方法。不是分开注册。
it512 commented
这个需求有什么特殊的应用场景?