无法解析在Django提醒(Could not parse the reminder in djan

2019-09-16 21:12发布

我想补充一个jQuery模板中的脚本标记。 所以,这里指的是这个链接 。 它告诉关闭内部脚本标签的方式如下:

<script id="filaVideoTemplate" type="text/x-jQuery-tmpl">
    <!-- Some HTML here -->
    <script type="text/javascript">
    <!-- Some javascript here -->
    {{html "</sc"+"ript>"}}
</script>

我试过,但示出的django此错误:无法解析的余: ' “</ SC ”+“ RIPT>”' 从 'HTML “</ SC” + “RIPT>”'

我。如何能做到这一点的Django。 是否有在Django这方面的任何具体的解决方案?

Answer 1:

{}在Django模板保留字符,所以你需要使用templatetag

更换:

{{html "</sc"+"ript>"}}

附:

{% templatetag openbrace %}{% templatetag openbrace %}html "</sc"+"ript>"{% templatetag closebrace %}{% templatetag closebrace %}


文章来源: Could not parse the reminder in django