我安装了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')),)
知道为什么会发生这种情况 - 或者我如何阻止它发生?
提前致谢!
汤姆