1

我是 Django 和 Heroku 的新手。我的安装在本地运行良好,但是当它推送到 Heroku 时,我无法在我的站点中看到 css、js 或图像。

这是我的网址模式:

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'blog.views.home', name='home'),
    # url(r'^blog/', include('blog.foo.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
    url(r'^comments/', include('django.contrib.comments.urls')),
    url(r'^blog/', include('zinnia.urls')),
    url(r'^', include('cms.urls')),
)

if settings.DEBUG:
    urlpatterns = patterns('',
        (r'^' + settings.MEDIA_URL.lstrip('/'), include('appmedia.urls')),
    ) + urlpatterns

这是我的 settings.py

STATIC_ROOT = os.path.join(PROJECT_PATH, "static")

# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'

# Additional locations of static files
STATICFILES_DIRS = (
    # Put strings here, like "/home/html/static" or "C:/www/django/static".
    # Always use forward slashes, even on Windows.
    # Don't forget to use absolute paths, not relative paths.
)

请让我知道我哪里出错了。提前致谢。

干杯小号

4

2 回答 2

2

要在 Heroku 上提供静态文件,您需要使用额外的应用程序,例如 whitenoise。我遵循了这些步骤,并且能够在 Heroku 上提供图像。

此链接是主要指南: https ://github.com/codingforentrepreneurs/Guides/blob/master/all/Heroku_Django_Deployment_Guide.md

这些将是参考(我建议也通过参考):

1) http://whitenoise.evans.io/en/stable/django.html

2) https://docs.djangoproject.com/en/3.0/howto/static-files/

3) https://docs.djangoproject.com/en/3.0/ref/templates/builtins/#std:templatetag-static

我遇到了你遇到的同样的问题。遵循指南和参考中的步骤对我来说效果很好。

于 2020-04-22T12:53:23.580 回答
1

您的DEBUG设置是否设置True为 Heroku?如果没有,appmedia.urls则不会包括在内。

在相关说明中,django-appmedia这不是在 Django 中处理静态资产的最佳方式——从 Django 1.3 开始,有一个名为 contrib 的应用程序staticfiles(参见:https ://docs.djangoproject.com/en/1.4/ref/contrib/ staticfiles/ ),Heroku 希望你会使用该应用程序。

此外,django-appmedia似乎希望资产位于/media/每个应用程序的目录中,而staticfiles期望资产位于每个应用程序的/static/文件夹中。

您是否查看过https://devcenter.heroku.com/articles/django-assets上有关 Django 和静态资产的 Heroku 文档?

于 2012-08-05T12:15:15.113 回答