从我的 play20 应用程序中,我需要生成一个包含所有外部 .css/.js/等的 HTML 文件。
要生成 HTML 文件,我使用 views.html.MyView(Parameter).toString()
但我需要更换:
<link rel="stylesheet" href="@routes.Assets.at("stylesheets/bootstrap.css")">
和
<script type="text/javascript" charset="utf-8">
@icludeTextFrom(routes.Assets.at("stylesheets/bootstrap.css"))
This function should read the bootstrap.css file and embed it's content here.
</script>
Play 2.0 中是否有一些功能可以嵌入其他文件,还是我必须手动复制文件的内容?
谢谢费边