嗨我有以下代碼,我在調用一個函數,該函數需要一個帶參數的回調函數。基本上,我試圖讓e的內容進入this.items,但我不能逃避回調函數?回調函數內的訪問變量
function stash(){
this.items = new Array();
this.get = function(){
opr.stash.query({},function(e){
console.log(this.items); //this is not defined
});
}
}
s = new stash();
s.get();
可能重複[如何訪問正確的\'這\'/上下文內回調?](http://stackoverflow.com/questions/20279484/how-to-access-the-correct-this-context-inside-a-callback) –