我有一个data()
包含一些 json 的对象。
有没有办法可以遍历对象并获取每个部分的键和值?
这是我到目前为止所拥有的:
function getFigures() {
var propertyValue = getUrlVars()["propertyValue"];
$.getJSON(serviceURL + 'calculator.php?value=' + propertyValue, function(data) {
figures = data.figures;
$.each(figures, function(index, figure) {
$('#figureList').append('<li> index = ' + data.figures.figure + '</li>');
});
});
$('#figureList').listview('refresh');
}
json 看起来像这样:
{"figures":{"value":"150000","completion":"10.00","coal":"32.40","local":"144.00","bacs":"35.00","landRegistry":"200.00","solFee":"395.00","vatOnSolFees":79,"stampDuty":1500,"total":2395.4}}
抱歉,如果它很简单,我是 jQuery 新手,在 SO 上找不到任何有帮助的东西。