我在 Play 2.2 中有一些我无法解释的东西。所以我的“路由”文件中的以下行编译得很好:
GET /css/*file controllers.Assets.at(path="/public/stylesheets", file)
但是当我从那里删除“path =”部分时
GET /css/*file controllers.Assets.at("/public/stylesheets", file)
我在控制台中看到以下错误:
)' expected but
"' 在第 9 行的 C:\Workspace\Private\Play\bubusik\conf\routes 中找到。
所以我想知道是否需要向 at() 函数显式提供参数名称?它是 Play 模板引擎的一些未记录的要求吗?