链接javascript中的Django模板变量

时间:2012-02-15 07:44:14

标签: javascript django django-templates

我在Django模板中使用<script src="/static/file.js" />形式的javascript。我想这个引用的file.js来获取{{ STATIC_URL }}和其他模板变量。

file.js访问模板变量的最佳方式是什么?

1 个答案:

答案 0 :(得分:1)

在包含file.js:

之前,在主布局文件中渲染所需的变量
<script>
    var STATIC_URL = '{{ STATIC_URL }}';
</script>
<script src="/static/file.js" />
#include other scripts here, STATIC_URL will be available as regular variable