Я знаю, как использовать функцию JQuery ajax для вызова «представления URL» Django.
import simplejson as json def the_view(request): fruits = {'color':5, 'type': 22} jfruit = json.dump(fruits) return render_to_response( THE JSON OBJECT!!! ...how? )
return HttpResponse (simplejson.dumps (mydictionary), mimetype = "application / json")
см. b-list
или короче: скачать http://bitbucket.org/offline/django-annoying/ и написать:
@ajax_request def the_view(request): return {'color':5, 'type': 22}
В джанго-раздражающих есть несколько таких крошечных вещей.