我试图动态创建一个简单的select
,其中包含基于某些约束的对象属性作为option
。
当我的JSON是脚本的一部分时,一切工作正常。
FIDDLE
编码
$(document).ready(function(){
/*$.getJSON('input.json',function(data){
alert('inside');
});*/
/*$.getJSON("inputjson.json", function(data){
// I have placed alert here previously and realized it doesn't go into here
console.log("datd");
console.log(JSON.stringify(data,null,4));
});*/
var jsonList =
{
"json_data" : {
"data" : [
{
"data" : "A node",
"metadata" : { id : 23 },
"children" : [ "Child 1", "A Child 2" ]
},
{
"attr" : { "id" : "li.node.id1" , "level" : "3" , "name" : "Ragini" },
"data" : {
"title" : "Long format demo",
"attr" : { "href" : "#" }
}
},
{
"attr" : { "id" : "li.node.id1" , "level" : "3" , "name" : "Rag" },
"data" : {
"title" : "Long format demo",
"attr" : { "href" : "#" }
}
},
{
"attr" : { "id" : "li.node.id1" , "level" : "4" , "name" : "Skyrbe" },
"data" : {
"title" : "Long format demo",
"attr" : { "href" : "#" }
}
}
]
}
}
var newObject = jsonList.json_data.data;
var listItems= "";
$form = $("<form></form>");
$('#form_container').append($form);
var $selectContainer = $("<select id=\"selectId\" name=\"selectName\" />");
for (var i = 0; i < jsonList.json_data.data.length; i++)
{
if(jsonList.json_data.data[i].hasOwnProperty("attr") && jsonList.json_data.data[i].attr.level == 3)
{
listItems+= "<option value='" + jsonList.json_data.data[i].attr.name + "'>" + jsonList.json_data.data[i].attr.name + "</option>";
}
}
$($selectContainer).html(listItems);
$($form).append($selectContainer);
});
但是,当我尝试将JSON放入单独的.json文件中并使用
$.getJSON
时,我没有任何成功。基本上,控件永远不会进入它。这是我为
$.getJSON
编写的代码$.getJSON('input.json',function(data){
console.log(JSON.stringify(data,null,4));
});
有人可以指出我的错误是什么。
干杯,
哈莎
最佳答案
您试图在getJSON调用完成之前创建select元素。将其余代码放入getJSON函数的回调函数中,如下所示:
$.getJSON("inputjson.json", function(data){
// I have placed alert here previously and realized it doesn't go into here
console.log("datd");
console.log(JSON.stringify(data,null,4));
var newObject = jsonList.json_data.data;
var listItems= "";
$form = $("<form></form>");
$('#form_container').append($form);
// etc
});
还要注意,您有一个错字和一些不必要的引号-
console.log("datd");
应该是console.log(data);
(除非您确实只想将'datd'单词放入日志)。关于javascript - $ .getJSON不起作用,但是脚本中包含JSON对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18262115/