这是一种使用播放框架版本2呈现纯html文件的方法吗? 我不想把它放在公共/文件夹中,因为稍后会添加一些动态信息。
答案 0 :(得分:12)
当然,把你的整个静态HTML即。在index.scala.html
中并使用最简单的方式:
public static Result index(){
return ok(index.render());
}
这是基础知识,你应该通过Play的文档和样本
答案 1 :(得分:12)
这是我的解决方案:
路径中的:我做了如下配置。
GET /hello.html controllers.Assets.at(path="/public/html", file="hello.html")
GET /public/javascripts/jquery-1.9.0.min.js controllers.Assets.at(path="/public/javascripts", file="jquery-1.9.0.min.js")
GET /public/stylesheets/bootstrap.css controllers.Assets.at(path="/public/stylesheets", file="bootstrap.css")
然后文件结构如下:
public->HTML->hello.html
public->javascripts->jquery-1.9.0.min.js
public->stylesheets->bootstrap.css
对于hello.html,这是它的内容。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel='stylesheet' type='text/css' href='/public/stylesheets/bootstrap.css'>
</head>
<body>
<script src="/public/javascripts/jquery-1.9.0.min.js" type="text/javascript"></script>
</body>
</html>
完成这三个步骤后,您可以直接使用外部HTML。无需按照Play模板进行前端开发工作。 所以现在,Play只负责后端。前端开发人员只需要操作此公共文件来进行开发。
答案 2 :(得分:3)
GET / controllers.Assets.at(path =“/ public / html”,file =“index.html”)
这在我的情况下使用play 2.0.1。 层次结构是 上市 - HTML --- index.html