(注意してください、これは Scalate Jade です。それが違いを生む場合)
私は次のルートを持っています:
get("/fruit") {
contentType = "text/html"
jade("fruity", "fruit" -> "apple")
}
そして、このfruity.jade
テンプレート:
-@ val fruit: String
p Alerting #{fruit}
:javascript
alert("#{fruit}");
次のようにレンダリングされます。
<body><p>Alerting apple</p>
<script type="text/javascript">
//<![CDATA[
alert("#{fruit}");
//]]>
</script>
</body>
fruit
JavaScript 部分の値は補間されません。javascriptで解決するにはどうすればよいですか?