我在项目中有很多控制器,每个函数都支持GET和POST方法,如何做到这一点?我真的不喜欢这样写两次:
GET /admin/orders/something controllers.admin.OrdersController.something()
POST /admin/orders/something controllers.admin.OrdersController.something()
如果我输入' *',则会发生错误:
Compilation error
string matching regex `\z' expected but `*' found
非常感谢。