0
對象後,我有這樣的AJAX jQuery代碼:訪問AJAX功能
$("#serial_number").submit(function(e) {
var url = "/getVoucher"; // the script where you handle the form input.
$.ajax({
type: "GET",
url: url,
data: $("#serial_number").serialize(),
dataType: "json",
success: function(data)
{
console.log(data);
}
});
e.preventDefault(); // avoid to execute the actual submit of the form.
});
我怎樣才能訪問對象代碼元素?
我嘗試使用:data.Code也嘗試data.Description但瀏覽器給我錯誤...如何訪問Ajax代碼中的成功函數內?
看起來像是雙重嵌套,如果你仍然在控制檯日誌中看到'data',試試'data.data.Code'? –
是的,那是一個錯誤...非常感謝 –