有沒有一種方法可以通過使用索引值而不是密鑰來遍歷JSON結果? 我想查看json數據結果並獲取發送的鍵和值。通過JSONResult中的數據循環
例如
$.get('/Home/GetTypes', function (data)
{
$.each(function(index) {
//Just as an example I know this will not work. Thanks
'<a class="p-button" href="/Wizard/Create/" + data[index][value] + " '">' + data[index][key] + '</a>'
}
});
什麼呢,你回來的樣子JSON字符串? –