4

我已经尝试过 JsonResponse 和 HttpResponse(以及 json.dumps),但即使 ajax 恢复成功,返回的 json 也无法被 $.parseJSON(returned_json)解析。

我确信问题不在于解析($.parseJSON(returned_json)),方法是在终端中打印出 json.dumps 值并将该值复制到变量中并将其提供给 $.parseJSON,并且它成功解析了它。

我试图传递最简单的 json,但它也失败了,我在下面展示了它的例子:在 views.py

from django.http import JsonResponse

在我看来正在处理ajax:

return JsonResponse({"stat":"Success"})

在我的 ajax 文件中:

$.ajax({
    url:"feed/get_comments/",
    type: "GET",
    data:{c_id: cid}, //cid is a variable initialized above and not creating any problem
    success: function(ret_json){
        alert("Inside success"); //Running everytime
        var sam_json = '{"stat":"Success"}'; //same as what is given in JsonResponse
        var data = $.parseJSON(ret_json); //for debugging change to sam_json
        alert(data); //with sam_json alerting with dictionary, with ret_json not giving any alert
    },

如果我使用 json.dumps 和 HttpResponse 而不是 JsonResponse,同样的事情正在发生。从上面我只能得出结论,即使 json.dumps 成功转换为 json 格式(因为我复制了这个并粘贴到 ajax 变量中),JsonResponse 和 HttpResponse 也没有返回 json 格式的数据。请帮忙。

4

2 回答 2

2

parseJSON不需要。

由于您只是在使用字典,因此您可以像使用 javascript 中的任何其他字典一样访问它

例如。

alert(ret_json.stat);
于 2016-04-11T07:48:46.753 回答
1

使用HttpResponse和json dump,可以像这样在js中获取响应数据

var val = $.ajax({
    url:"feed/get_comments/",
    type: "GET",
    data:{c_id: cid}, //cid is a variable initialized above and not creating any problem
    success: function(ret_json){
        alert("Inside success"); //Running everytime
        var sam_json = '{"stat":"Success"}'; //same as what is given in JsonResponse
        var data = jQuery.parseJSON(val.responseText); //for debugging change to sam_json
        alert(data); //with sam_json alerting with dictionary, with ret_json not giving any alert
     },    

val.responseText将拥有您从视图中发送的数据。

于 2016-04-11T08:00:48.793 回答