我已经安装了 Dajax 和 Dajaxice - 并让它们在我的本地环境中运行良好。但是,在我的测试服务器上,当我尝试使用 manage.py collectstatic 时出现以下错误: TemplateDoesNotExist: dajaxice/dajaxice.core.js
我的 settings.py 文件包含以下内容:
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'dajaxice.finders.DajaxiceFinder',
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
INSTALLED_APPS = (
...
'dajaxice',
'dajax',
)
DAJAXICE_MEDIA_PREFIX = "dajaxice"
我的 urls.py 文件包含以下内容:
dajaxice_autodiscover()
urlpatterns = patterns('', url(dajaxice_config.dajaxice_url, include('dajaxice.urls')),)
知道为什么会发生这种情况 - 或者我如何阻止它发生?
提前致谢!
汤姆