我想在jquery模板中添加一个脚本标记。所以我指的是link。 它告诉我们以下列方式关闭内部脚本标记:
<script id="filaVideoTemplate" type="text/x-jQuery-tmpl">
<!-- Some HTML here -->
<script type="text/javascript">
<!-- Some javascript here -->
{{html "</sc"+"ript>"}}
</script>
我试过了,但是django显示了这个错误: 无法解析余数:'“&lt; / sc”+“ript&gt;”'来自'html“&lt; / sc”+“ript&gt;”'
。我怎么能这样做django。 django中有没有具体的解决方案?
答案 0 :(得分:2)
{
和}
是Django模板中的保留字符,因此您需要使用templatetag
。
替换:
{{html "</sc"+"ript>"}}
使用:
{% templatetag openbrace %}{% templatetag openbrace %}html "</sc"+"ript>"{% templatetag closebrace %}{% templatetag closebrace %}