Django最简单的Dajaxice示例不起作用

时间:2013-11-03 13:01:39

标签: python ajax django dajaxice dajax

我对Dajaxice最简单的例子有疑问。我按照他们的官方http://django-dajaxice.readthedocs.org/en/latest/installation.html中的安装指南和此处显示的示例http://django-dajaxice.readthedocs.org/en/latest/quickstart.html或Github回购中的说明进行了操作,它与https://github.com/jorgebastida/django-dajaxice/tree/master/examples相同。

当我执行所有操作并单击按钮时,没有任何操作,并且在JavaScript控制台中出现错误,该函数未定义。我读了很多关于这个问题但仍然没有解决方案。这就是我所拥有的。如果有人可以提供帮助:(

这是我的项目的回购,与示例相同: https://github.com/valkirilov/dajacice-example

1 个答案:

答案 0 :(得分:0)

添加'dajaxice.finders.DajaxiceFinder',

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
#    'django.contrib.staticfiles.finders.DefaultStorageFinder',
)