我将文件上传到/upload
文件夹,然后我想直接访问我的文件,例如:
http://localhost/upload/xxx.jpg
当我添加如下路线时:
GET /upload/*file controllers.Assets.at(path="/upload", file)
它会导致另一个错误:
not enough arguments for method at: (path: String, file: String)play.api.mvc.Call. Unspecified value parameter file.
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
然后,在我更改@routes.Assets.at("stylesheets/main.css")
为之后@routes.Assets.at("stylesheets/", "main.css")
,还有另一个错误:
[MatchError: (stylesheets/,main.css) (of class scala.Tuple2)]
(path: @unchecked, file: @unchecked) match {
有人可以帮我走这条路吗?谢谢。