1

我喜欢 Django,但是在开发中获取静态文件是非常痛苦的。我已经安装了网络资产以使工作更轻松。基本上,我的资产在我当前的配置下是 404,但管理资产很好(?!)。我的项目布局是这样的;

myapp/
    common/
        static/
            bootstrap/
                img/
                less/
                js/
        templates/
        __init__.py
        assets.py
        urls.py
        models.py
        views.py
    projects/
        templates/
        static/
        __init__.py
        assets.py
        urls.py
        models.py
        views.py
    public/ <- (static files collected here)
settings.py

在我的设置中,我配置了以下值

__DIR__ = os.path.abspath(os.path.dirname(__file__))
MEDIA_ROOT = os.path.join(__DIR__, 'media')
MEDIA_URL = '/media/'
STATIC_ROOT = os.path.join(__DIR__, 'public')
STATIC_URL = '/static/'

我的网址是这样配置的;

urlpatterns = patterns('',
    url(r'^projects/', include('myapp.projects.urls')),
    url(r'^admin/', include(admin.site.urls)),
    url(r'^$', include('myapp.common.urls')),
)

urlpatterns += staticfiles_urlpatterns()

同样,assets.py 看起来很标准;

from django_assets import register, Bundle

js = Bundle(
    'bootstrap/js/bootstrap-alert.js',
    'bootstrap/js/bootstrap-button.js',
    'bootstrap/js/bootstrap-carousel.js',
    'bootstrap/js/bootstrap-collapse.js',
    'bootstrap/js/bootstrap-modal.js',
    'bootstrap/js/bootstrap-popover.js',
    'bootstrap/js/bootstrap-scrollspy.js',
    'bootstrap/js/bootstrap-tab.js',
    'bootstrap/js/bootstrap-tooltip.js',
    'bootstrap/js/bootstrap-transition.js',
    'bootstrap/js/bootstrap-typeahead.js',
    output='bootstrap/script.js',
    debug=False
)

register('js', js)

我的基本模板非常基础;

{% load assets %}
{% assets 'js' %}
    <script type="text/javascript" src="{{ ASSET_URL }}"></script>
{% endassets %}

因此,当 runserver 运行时,所有 js 文件都被捆绑到 1 个标签中,并带有以下 url http://localhost:8000/static/bootstrap/script.js?ed501ad2。但是这个 404 的消息“找不到'bootstrap/script.js'”。

但是,如果我登录 /admin 应用程序,那么所有 css 资产都会正确呈现。我已经运行了 collectstatic 并验证了资产确实存在于public/目录中。

我在这里想念什么?

4

1 回答 1

3

您是否根据 django-assets 文件的要求添加django_assets.finders.AssetsFinder了您的内容?STATICFILES_FINDERS

http://elsdoerfer.name/docs/webassets/django/index.html

于 2012-05-19T15:01:53.680 回答