使用 Play!Framework 2.1.3,有没有办法从匹配的路由中获取 URL 中使用的值?
一个更准确的例子:
路线:
GET /users/:name/:page controllers.Users.list(name: String, page: Integer)
这个网址:
/用户/本/1
是否有可能从Context().current()
, 中获取值ben
而1
无需解析Context().current().path()
?
使用 Play!Framework 2.1.3,有没有办法从匹配的路由中获取 URL 中使用的值?
一个更准确的例子:
路线:
GET /users/:name/:page controllers.Users.list(name: String, page: Integer)
这个网址:
/用户/本/1
是否有可能从Context().current()
, 中获取值ben
而1
无需解析Context().current().path()
?