You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found something wrong with the json.loads() in get_filters
I got this " 'module' object has no attribute 'loads' ", and then checked the "from django.core.serializers import json" to find no loads() function
my django version is old,1.2.3, maybe this leads to the error
I fixed the error with
import simplejson
filters = _filters and simplejson.loads(_filters)
The text was updated successfully, but these errors were encountered:
I've found something wrong with the json.loads() in get_filters
I got this " 'module' object has no attribute 'loads' ", and then checked the "from django.core.serializers import json" to find no loads() function
my django version is old,1.2.3, maybe this leads to the error
I fixed the error with
import simplejson
filters = _filters and simplejson.loads(_filters)
The text was updated successfully, but these errors were encountered: