Reputation: 355
When I run
from dajax.core import Dajax
It gives
cannot import name simplejson
Whats the fix?
I have installed dajax libraries along with django.
Upvotes: 0
Views: 365
Reputation: 45575
This is a known bug. Simplejson is deprecated in django 1.7 so Dajax is outdated.
Switch to django 1.6 or to django-dajax-ng.
Upvotes: 1