gpt4 book ai didi

javascript - 如何将上下文传递给在ajax中完成

转载 作者:行者123 更新时间:2023-11-29 22:07:13 25 4
gpt4 key购买 nike

场景如下:

getSomething: function(){
var gotValue = sendAjax();
gotValue.done(function(response){
console.log(response); //How to pass context of object to call getSomethingElse
//getSomethingElse();
});
},
getSomethingElse : function(){
}

我想在ajax的done方法中调用getSomethingElse函数

最佳答案

使用 $this=this; 因为函数中的 this 没有引用对象。

getSomething: function()
{
var $this = this;
var gotValue = sendAjax();
gotValue.done(function(response){
console.log(response);
$this.getSomethingElse();
});
},
getSomethingElse : function()
{
}

或者您可以使用 $.proxy

gotValue.done($.proxy(function(response){
console.log(response);
this.getSomethingElse();
},this));

关于javascript - 如何将上下文传递给在ajax中完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20280837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com