这是我现在用来通过 JQuery 执行 AJAX 的代码:
$.ajax({
type: "POST",
url: linktopage,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
$.each(data, function (index, item) {
alert(item.productId);
});
},
error: function (xhr, status, error) {
}
});
其中index = d和item = "[{"productId":5284598},{"productId":5790923}]"但alert(item.productId)未定义,我如何访问每个 productId?