我使用闭包将其设置为 _this 在 ajax 成功中,但现在我当然失去了“响应”。有人知道在这种情况下检索响应数据的方法吗?
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)
});
};