mirror of
https://github.com/astaxie/beego.git
synced 2024-11-16 17:00:54 +00:00
add some tips
This commit is contained in:
parent
b961abb52b
commit
538d39a704
@ -205,6 +205,16 @@
|
|||||||
|
|
||||||
beego.Router("/simple",&SimpleController{},"get:GetFunc;post:PostFunc")
|
beego.Router("/simple",&SimpleController{},"get:GetFunc;post:PostFunc")
|
||||||
|
|
||||||
|
可用的http method
|
||||||
|
- * :包含一下所有的函数
|
||||||
|
- get :GET请求
|
||||||
|
- post :POST请求
|
||||||
|
- put :PUT请求
|
||||||
|
- delete :DELETE请求
|
||||||
|
- patch :PATCH请求
|
||||||
|
- options :OPTIONS请求
|
||||||
|
- head :HEAD请求
|
||||||
|
|
||||||
>>>如果同时存在*和对应的http method,那么优先执行http method的方法,例如同时注册了如下所示的路由:
|
>>>如果同时存在*和对应的http method,那么优先执行http method的方法,例如同时注册了如下所示的路由:
|
||||||
|
|
||||||
>>> beego.Router("/simple",&SimpleController{},"*:AllFunc;post:PostFunc")
|
>>> beego.Router("/simple",&SimpleController{},"*:AllFunc;post:PostFunc")
|
||||||
|
Loading…
Reference in New Issue
Block a user