2016-12-30 65 views

回答

0

我希望你是在談論一個AJAX調用得到一些響應數據或呈現的字符串。如果是這樣的話:

對於GET請求,

$.get("url/end/point",function(json_response){ ...do some thing with the response...}); 

對於GET請求,

$.post("url/end/point",function(json_response){ ...do some thing with the response...}); 

像渲染的一般得到或交的視圖,您需要將網址添加到(無論你喜歡)

在視圖中,你需要添加,

from django.http import HttpResponse, JsonResponse 

def view(request): 
    if request.is_ajax(): 
     ....process the request.... 
     return JsonResponse(data) (or) HttpResponse(data)