我正在使用角度 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)