1

我有一个json对象作为响应,使用它我必须创建一个jstree。但无法在 javascript 函数中读取该 json 对象。

我的 JavaScript:

var repoId = $('#frmHdnV').val();
// variable to hold request
var request= $.post("CreatJqueryTree",{repoId:repoId},function(data){},"json");

request.done(function (response, textStatus, jqXHR){

    alert(response);

    var tem = JSON.parse(response);
    var obj = tem.data;
    $("#tes").jstree({ 
        "json_data" : {
            "data" : // here i need that json object to create this tree
        },
            "plugins" : [ "themes", "json_data", "checkbox", "ui" ]
        }).bind("select_node.jstree", function (e, data) { alert(data.rslt.obj.data("id")); });

}); 


request.fail(function (jqXHR, textStatus, errorThrown){


    alert("....Not Done...");
    alert(errorThrown);

});

我可以在 firefox usinhg firebug 中看到的响应。但是如何从响应中读取该 json 对象。

4

1 回答 1

1

尝试这个:

$.post("CreatJqueryTree",{repoId:repoId},function(data){
  $("#tes").jstree({ 
        "json_data" : {
            "data" : data
        },
            "plugins" : [ "themes", "json_data", "checkbox", "ui" ]
        }).bind("select_node.jstree", function (e, data) { alert(data.rslt.obj.data("id"));   });
},"json");
于 2013-08-12T17:56:54.597 回答