标签: django static include
{%load staticfiles%} {%include“{%static'some.js'%}”%}
无法正常工作。 这里的语法是什么?
编辑。 我试图在这里包含一个* .js文件。 现在更有意义吗?
答案 0 :(得分:3)
如何:
{% include "some.html" %}
或:
{% include "myapp/some.html" %}
无论如何,你不能像这样嵌套标签。