我正在尝试创建一个指向特定静态文件的路由,但我尝试的所有内容都以错误结束。
我做了3次不同的尝试:
1
GET /file staticFile:/public/html/file.html
我得到的错误:
Compilation error
string matching regex `\z' expected but `:' found
2
GET /file controllers.Assets.at(path="/public/html", "file.html")
我得到的错误:
Compilation error
Identifier expected
3
GET /file controllers.Assets.at(path="/public/html", file="file.html")
我得到的错误:(这是最奇怪的)
Compilation error
not enough arguments for method at: (path: String, file: String)play.api.mvc.Call. Unspecified value parameter file.
关于第3个错误的奇怪部分是它被抛出到以下行的不同文件(app / views / main.scala.html)中:
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
所有这些方法都可以在stackoverflow上的官方文档和/或线程中找到。 我在这里缺少什么?
感谢。
答案 0 :(得分:18)
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
要
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/", "main.css")">
我说的是你的第三次尝试
另外,请注意额外/
修改强>
GET /assets/main.css controllers.Assets.at(path="/public", file="/stylesheets/main.css")
假设您的资源位于/public/stylesheets/main.css
答案 1 :(得分:13)
我不完全确定这是否正确,但这是我们用来映射包含我们的图片,javascripts等的公共文件夹。
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)
答案 2 :(得分:13)
据我所知,这项能力仍然没有增加。但是如果有人需要回答,作为一个选项,可以为这些目的创建帮助控制器:
object StaticFile extends Controller {
def html(file: String) = Action {
var f = new File(file)
if (f.exists())
Ok(scala.io.Source.fromFile(f.getCanonicalPath()).mkString).as("text/html");
else
NotFound
}
}
然后在路线配置
GET / controllers.StaticFile.html(file = "public/index.html")
答案 3 :(得分:10)
最简洁的解决方案是创建自己的AssetsBuilder来构建静态页面。
在您的控制器包中创建此文件 - Static.scala
package controllers
object Static extends AssetsBuilder
然后在您的路线中,您可以定义静态端点
GET /file controllers.Static.at(path="/public/html", "file.html")
完成。现在/public/html/file.html
上的文件将从localhost:9000/file
如果您将上面的硬代码替换为更通用的代码:
GET /*file controllers.Static.at(path="/public/html", *file + ".html")
然后/foo
将投放/public/html/foo.html
,/bar
将投放/public/html/bar.html
等。
答案 4 :(得分:5)
你的第三次尝试几乎是正确的。 而不是
GET /file controllers.Assets.at(path="/public/html", file="file.html")
这样做
GET /file controllers.Assets.at(path="/public", file="html/file.html")
之前我遇到过同样的问题。我的路线文件看起来像这样。
# Application
GET / controllers.Assets.at(path="/public/html", file="static.html")
GET /exmpl controllers.Examples.index
# Resources
GET /assets/*file controllers.Assets.at(path="/public", file)
我在视图(examples.scala.html
)
@routes.Assets.at("imagefolder") #try to generate path to /public/imagefolder.
当我打开http://localhost:9000/exmpl
时,出现此错误。
not enough arguments for method at: (path: String, file: String)play.api.mvc.Call. Unspecified value parameter file.
要解决此问题,我只是更改了此路线
GET / controllers.Assets.at(path="/public/html", file="static.html")
到这个
GET / controllers.Assets.at(path="/public", file="html/static.html")
这个解决方案对我有用。我希望它也适合你和其他人。
答案 5 :(得分:3)
当我尝试配置一些额外的CSS时,我遇到了同样的问题。它在“routes”文件中使用了这种语法
GET /css/*file controllers.Assets.at(path="/public/css", file)
答案 6 :(得分:1)
我遇到了同样的问题。当我向
等路线添加第二个controllers.Assets.at
时
GET /assets/*file controllers.Assets.at(path="/public", file)
GET /assets2/*file controllers.Assets.at(path="/public2", file)
main.scala.html中的默认@routes.Assets.at
调用编译失败
Compilation error
not enough arguments for method at: (path: String, file: String)play.api.mvc.Call. Unspecified value parameter file.
这似乎是因为有多个匹配对象的隐式参数。解决方案是添加一个主要的位置参数:
href="@routes.Assets.at("/public","/css/main.css")"
不幸的是,如果您回到路由中只有一个资产行,则必须更改为单参数表单以避免编译错误。对我来说似乎是一个错误。
答案 7 :(得分:1)
在jar文件中播放java包公共文件夹,如果您想提供解析为服务器中绝对文件位置的静态文件,这将是一个问题。正确的方法是拥有自己的控制器并使用它来提供静态文件。
例如,要提供
中的文件“mystatic.html”<your playhome>
|-----<myfolder>
|------mystatic.html
您可以在路线文件中配置此路线。
GET /mystatic mypackage.mycontrollers.Static.getFile(path="/myfolder/mystatic.html")
并且您的控制器将按如下方式实施。
package mypackage.mycontroller;
import java.io.File;
import com.google.inject.Inject;
import com.google.inject.Provider;
import play.Application;
import play.mvc.Controller;
import play.mvc.Result;
import play.mvc.Results;
public class Static extends Controller {
@Inject
Provider<Application> app;
public Result getFile(String path){
File file = app.get().getFile(path);
if(file.exists()){
return ok(file);
}else{
return Results.notFound();
}
}
}