3
非常簡單的AJAX請求,但它根本不起作用。得到這個錯誤我以前從來沒見過:無法讀取未定義的屬性'模式'
無法讀取的不確定
$.ajax({
url: '/Contractor/api/plot/LinkBuyer',
method: 'POST',
data: {
'buyerId': 1,
'plotId' : parseInt(sPlotId, 10),
'activateDirectly': true
},
success: function (data) {
console.log('success');
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(JSON.stringify(jqXHR));
console.log("AJAX error: " + textStatus + ' : ' + errorThrown);
}
});
你能否請將錯誤堆棧跟蹤添加到問題中。 – RaghavGarg
那麼,你在哪裏試圖訪問'mode'?我在你的代碼中看不到它。 – Cerbrus
@Cerbrus也許一些jQuery內部?但是我們只能確定堆棧跟蹤是否可用。 – Nisarg