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のキーワードでもあると思いますが、解決策は何ですか?