$.ajax({
url: "ranktonumber.json",
dataType: "json",
success: function (data) {
// my problem is what should be in this line
}
});
就像你看到的,我有給我JSON變量的jQuery(阿賈克斯)命令。 讓我們說,我有另一個名爲「等級」的變量。 「排名」是json的關鍵。 JSON的是:
{"Recruit":"1",
"Private":"2",
"Private*":"3",
"Private**":"4",
"Private***":"5",
"Corporal":"6",
"Corporal*":"7",
"Corporal**":"8",
"Corporal***":"9"}
我如何在JSON使用「等級」,因爲這是行不通的:
data.rank
如果你還不明白,這裏是我可怎麼辦它的mIRC:
$json(jsonvariable,rankvariable)
的可能重複[動態對象屬性的名稱(http://stackoverflow.com/questions/4244896/dynamic-object-property-name),也涉及到[如何使用一個變量作爲一個JSON屬性附加傷害?( http://stackoverflow.com/questions/4540165/how-to-use-a-variable-as-a-json-atribute)。 –