1

我无法在 Scala 中反转我的路线,因为我在我的视图中包含了一个引导 css 文件。

这是我的引导文件链接:

  <link href="@routes.Assets.at("bootstrap/dist/css/bootstrap.css")" rel="stylesheet"/>

这是我的路线:

GET     /assets/*file controllers.Assets.at(path="public", file)

这是我的文件路径:

/public/bootstrap/dist/css$ ls
bootstrap.css      bootstrap-theme.css      index.html
bootstrap.min.css  bootstrap-theme.min.css  index.html.1

我在这里做错了什么?

谢谢!

4

1 回答 1

1

似乎您的路线没有有效的斜线丢失它应该是

GET     /assets/*file               controllers.Assets.at(path="/public", file)
于 2013-11-05T19:51:35.807 回答