0

我正在使用角度 heroku 和 django。我一直注意到,当我使用“ng build”来构建新的静态文件以添加到 django 然后推送到 heroku 时,heroku 实例显示的网站比我当前的代码落后了几个版本。

ngbuild在将文件放入指定文件夹后,我今天尝试运行我的 django 本地服务器,

跑步python manage.py collectstatic

它运行成功。

然后我运行我的 django 服务器,导航到我的页面,我得到一个 500 响应。

因为我使用的是 angular,所以我将 django 服务器设置为 rest 后端。

其余服务使用的每个端点都以 url api/ 开头

所以 localdomain/api/ <-- 宁静的服务

localdomain 单独服务于 Angular 应用程序。

当我尝试获取应用程序时,我只收到 500 服务器错误。

这是我关于静态文件的所有设置:

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',

#angular distro root
ANGULAR_APP_DIR = os.path.join(BASE_DIR, 'frontend/dist/')
#image distro root
ASSETS_DIR = os.path.join(BASE_DIR, 'frontend/dist/assets/')


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/
#STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_URL = '/static/'

STATICFILES_DIRS = [
    os.path.join(ANGULAR_APP_DIR),
    os.path.join(ASSETS_DIR),

]

我的模板设置:

ROOT_URLCONF = 'suitsandtables.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': ['suitsandtables/templates',
                 'stemail/templates'],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

我的 url 提供静态文件和我的 url 呈现 index.html 页面

url(r'^(?!/?static/)(?!/?media/)(?P<path>.*\..*)$',
        RedirectView.as_view(url='/static/%(path)s', permanent=False)),
 url(r'^$', views.RootView.as_view()),

我的 rootview 类来呈现 index.html

class RootView(TemplateView):
    def get(self, request, **kwargs):
        return render(request, 'index.html', context = None)
4

1 回答 1

6

这是白噪声的常见问题。我为此浪费了无数个小时。这是您如何处理此问题的方法。

将这两行放在你的 settings.py 中

DEBUG = False
DEBUG_PROPAGATE_EXCEPTIONS = True

并尝试在 heroku 上运行该应用程序。它会像往常一样破裂。

现在去

https://dashboard.heroku.com/apps/<app_name>/logs

通常当debug 为 False时您将看不到日志,但由于DEBUG_PROPAGATE_EXCEPTIONS=True您可以看到日志

在那里,查找 whitenoise 无法找到的文件并使 whitenoise 变得混乱。在我的情况下,它是一些在我的base.html中引用的随机 css 文件。

您可以修复其位置,也可以简单地从 base.html 中删除引用该文件的行。

在此之后,如果另一个文件有问题,请继续这样做。

最终,白噪声会很高兴,你也会很高兴。

于 2018-06-29T19:11:47.143 回答