使用jquery,我试图用json填充选择下拉列表。我试图从下面的json中显示一个国家列表...
{
"country":[
{
"China":[
{
"tarrifType":"Pay as you go"
},
{
"fixLine":"23p"
}
],
"India":[
{
"sms":"39p"
},
{
"fixLine":"3p",
"sms":"59p"
}
],
"Poland":[
{
"mobile":"29p",
"sms":"19p"
},
{
"tarrifType":"China Pass",
"fixLine":"23p"
}
]
}
]
}
到目前为止,我尝试使用的jquery是以下内容......
$.getJSON("js/widgets/country-picker.json", function(result){
$.each(result, function(i, field) {
$('#js-rate-select').append($('<option>').text(field[1]).attr('value', field[1]));
});
});
但它没有填充选择下拉列表或给出任何DOM错误。有什么建议我可以解决这个问题吗?我认为问题是因为json格式 - 我能够改变谢谢
答案 0 :(得分:2)
您的json feed返回一个只包含一个索引的数组,该索引是具有不同国家/地区的对象。因此,你应该说
result.country[0].China.tarrifType.
而且,你可以像这样迭代这些国家:
$.each(result.country[0], function(country,data) { console.log(country); }
虽然,我建议重做你的JSON。你可以这样做:
var result = {
"country": {
"China": {
"tarrifType": "Pay as you go",
"fixLine": "23p"
},
"India": {
"sms": "39p",
"fixLine": "3p",
"sms": "59p"
},
"Poland": {
"mobile": "29p",
"sms": "19p",
"tarrifType": "China Pass",
"fixLine": "23p"
}
}
};
$(function () {
$.each(result.country, function (country, data) {
console.log("Country : " + country);
console.log(data); // data.fixLine, data.tarrifType, data.sms
$('#selectbox').append('<option value="' + country + '">' + country + '</option>');
});
});
这里的jsfiddle: Link to JSfiddle