Spring正在返回一個帶有四個屬性的json編碼對象。其中之一是名爲「數組」的屬性。我想要這個數組的內容。Javascript:麻煩分析json響應
這裏是整個JSON響應:
ee
{"map":null,"array":[{"id":2,"description":"Cloud For Dev","businessSize":2,"businessType":9,"businessLocation":3},{"id":3,"description":"Cloud For Prod","businessSize":2,"businessType":9,"businessLocation":3}],"string":null,"bool":false}
0
我實際上並不知道什麼是「EE」或0的意思是......反正,我試圖分析它是這樣的:
$.ajax({
type: "GET",
url: "/ajax/rest/teamService/list",
dataType: "json",
success: function (response) {
var teamArray = response.array;
var $el = $("#teamSelect");
$el.empty();
$.each(teamArray[0], function(team) {
alert(team.description);
$el.append($("<option></option>").attr("value", team.id).text(team.description));
});
// Reattach the plugin
$("#teamSelect").selectbox("detach");
$("#teamSelect").selectbox("attach");
},
error: function (jqXHR, textStatus, errorThrown) {
if (textStatus === 'error') {
setTimeout(function() { window.location = '/do/login'; }, 7000);
}
}
});
我得到彈出框6次(應該是2),每次它說「未定義」,而不是實際的描述。
選擇框本身有四個空白選項。
好像我遍歷json編碼對象的四個參數,而不是封閉數組的兩個內容。
我該如何解決這個問題?
這根本不是一個有效的JSON字符串。那些「ee」和0表示語法和響應無法解析。 – MaxArt 2013-04-21 18:07:33
我也懷疑這兩個位。我看到他們在提琴手顯示的JSON響應,我不確定他們的意思。 – Lurk21 2013-04-21 18:16:01