在我的django模板中,我使用$ .ajax jquery方法,其中url指向我的django视图之一。现在我如何在这个django视图中使用render_to_response?
def document_status(request):
if request.method == u'GET':
GET = request.GET
if GET.has_key(u'doc_type') and GET.has_key(u'iqama_no'):
pass
json_response = simplejson.dumps({'res':True})
#return HttpResponse(json_response, mimetype='application/json')
return render_to_response('tracking/index.html' )