gpt4 book ai didi

playframework - 如何使用 Play Framework 呈现简单的 html 页面?

转载 作者:行者123 更新时间:2023-12-04 16:18:03 26 4
gpt4 key购买 nike

它是一种使用 Play Framework 版本 2 呈现纯 html 文件的方法吗?
我不想把它放在 public/文件夹中,因为稍后会添加一些动态信息。

最佳答案

这是我的解决方案:

在 route :我做了一些配置如下。

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 只负责后端。前端开发者只需要操作这个公共(public)文件就可以进行开发。

关于playframework - 如何使用 Play Framework 呈现简单的 html 页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11126678/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com