如何with
在外部 JavaScript 文件中使用 django 模板标签?我试着像这样使用它:
<script>
//some code
//
{% with user|get_song_rating:opts.id as rated %}
{% if rated %}
$off.unbind('click').unbind('mousemove').unbind('mouseenter').unbind('mouseleave');
$off.css('cursor', 'default'); $on.css('cursor', 'default');
$this.attr('title', 'Your rating: ' + rated.points.toFixed(1));
{% endif %}
{% endwith %}
</script>
但它在控制台中给出错误Uncaught SyntaxError: Unexpected token with
。我认为问题是with
JavaScript 的关键字也是,那么解决方案是什么?