これは、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にアクセスするにはどうすればよいですか?