我使用閉包來將此設置爲_這是ajax成功的內部,但現在我當然丟失了「響應」。任何人都知道在這種情況下檢索響應數據的方法?使用jquery ajax保留「this」範圍的同時獲取響應
var form = {
name: 'great form',
load:function() {
$.ajax({
url: "get/data",
type: "POST",
success: function(_this){
console.log(_this.name); // outputs : "great form"
console.log(response.data); // response is undefined
}(this)
});
};
我生活改變了這一刻,謝謝提示 – Sych
輝煌!不能相信我從來不知道上下文參數。回到這個,沒有更多的!謝謝!! – user240880