我正在尝试将特定于页面的 javascripts 作为参数传递给主模板。这是我尝试过的:
main.scala.html:
@(title: String,moreScripts: Html)(content: Html)
<!DOCTYPE html>
<html>
<head>
<title>@title</title>
<link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
<link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
<script src="@routes.Assets.at("javascripts/jquery-1.7.1.min.js")" type="text/javascript"></script>
@moreScripts
</head>
<body>
@content
</body>
</html>
test.scala.html:
@main("Test",<script src="javascripts/test/test.js" type="text/javascript"></script>) {
<h1>Test</h1>
}
但我收到一个type mismatch; found : scala.xml.Elem required: play.api.templates.Html
错误。<script>
我也尝试将声明包装起来@{}
无济于事。
我需要如何构造<script>
语句以便将语句识别为 HTML?