Play框架中的Javascript路由会覆盖其他路由

时间:2017-08-03 07:15:10

标签: playframework url-routing

在Play Framework中定义路线,我注意到如果路线的顺序是:

GET    /javascriptRoutes           controllers.HomeController.javascriptRoutes
GET    /game/:number               controllers.HomeController.newItem(number: Int)

javascript中的AJAX请求不会在我的控制器中运行该方法。当我切换路线的顺序时:

GET    /game/:number               controllers.HomeController.newItem(number: Int)
GET    /javascriptRoutes           controllers.HomeController.javascriptRoutes

AJAX请求正常。为什么会这样?

0 个答案:

没有答案