gpt4 book ai didi

javascript - django 提供静态文件/angularJS 应用程序

转载 作者:行者123 更新时间:2023-11-30 16:22:19 26 4
gpt4 key购买 nike

我使用 Django-rest-framework 编写了一个 rest-API,并将 angularjs 应用程序作为前端。我还使用 gulp 构建我的 angularjs 应用程序的压缩版本,并将其输出到我的 django 应用程序的静态文件目录中。我尝试使用 django templateview 但这给出了这样的控制台错误:

vendor-001932f856.js:1 Uncaught SyntaxError: Unexpected token <
app-2d5e1cec88.js:1 Uncaught SyntaxError: Unexpected token <

这 2 个文件都是有效的 javascript 文件。这是我的网址文件:

from django.views.generic import TemplateView

urlpatterns = [
url(r'^.*$',TemplateView.as_view(template_name="index.html")),
]

这些是我的静态文件和模板设置:

STATIC_ROOT = 'staticfiles'
STATIC_URL = '/static/'

STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
os.path.join(BASE_DIR, 'static/eventshop'),
)

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'static/eventshop')],
'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',
],
},
},
]

我的 Angular 应用程序位于 static/eventshop 中,index.html 中的链接是相对 URL(因此没有 STATIC_URL 前缀)。

为什么会出现此错误和/或在 Django 中提供“静态” Angular 应用程序的最佳方式是什么?

最佳答案

使用 django whitenoise 并将 WHITENOISE_ROOT 路径设置为我的静态文件对我有用。

关于javascript - django 提供静态文件/angularJS 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34560640/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com