django 1.11模板无法加载静态文件

时间:2017-12-13 13:54:24

标签: javascript jquery python django django-templates

我在settings.py

中设置了STATICFILES_DIRS STATIC_URL
    STATIC_URL = '/static/'
    STATICFILES_DIRS = [
        os.path.join(BASE_DIR, 'projectName', 'static'),
    ]

我想在模板中使用javascript文件,但它不起作用。 js文件路径为app/static/app/new.js 我使用此代码在模板中使用它

    {% load static %}
        <script type="text/javascript" src="{% static "app/new.js" %}">
            $(document).ready(function(){
                alert(1);
                new_function();
            });
        </script>
new.js中的

功能以及警报不起作用。 如果我删除脚本标记中的src部分,则警报可以正常工作。 我可以通过访问chrome开发人员工具中显示的路径来查看new.js脚本。

我做错了什么?

0 个答案:

没有答案