解析json只返回django jquery中的一个对象

时间:2016-08-14 18:10:02

标签: jquery json django

朋友们,我正试图在django中获得ajax json响应。

虽然控制台日志显示了每个json对象,但在解析json并将字段添加到html中的分区时,情况也是如此。只显示一个对象的字段。

我的javascript如下

$("#all_questions").on("click",
    function(event){
        all_questions();
    }
);

function all_questions()
{
    console.log("all_questions() working..");


    $.ajax({
       url : "/questions", 
       type : "GET", // http method
       data : { },

       success : function(json) {
       console.log(json); // log the returned json to the console
       $("#content").empty();
       data = JSON.parse(json);
       $.each(data, function(idx, obj) {
            $('#content').html(obj.fields.title);
        });
    }
    ,


   error : function(xhr,errmsg,err) {

       console.log(xhr.status + ": " + xhr.responseText); 
   }
  });
}

我无法弄清楚我哪里出错了。

0 个答案:

没有答案