1
0
mirror of https://github.com/astaxie/beego.git synced 2024-09-28 20:11:48 +00:00

add some tips

This commit is contained in:
astaxie 2013-07-25 15:46:47 +08:00
parent b961abb52b
commit 538d39a704

View File

@ -204,6 +204,16 @@
一下是不同的method对应不同的函数通过`;`进行分割
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的方法例如同时注册了如下所示的路由