創建返回值我願做這樣的事情:的Javascript:在EVAL
function end(){ console.log(this); } // <-- the problem is here with `this`
eval('var a = 0; setTimeout(function(){ a = 10; end(); }, 2000)');
這2秒後應該輸出:
{ "a" : 10 }
這在某種程度上可能嗎?
創建返回值我願做這樣的事情:的Javascript:在EVAL
function end(){ console.log(this); } // <-- the problem is here with `this`
eval('var a = 0; setTimeout(function(){ a = 10; end(); }, 2000)');
這2秒後應該輸出:
{ "a" : 10 }
這在某種程度上可能嗎?
是:
function end(){ console.log(this); }
eval('var a = 0, self = this; setTimeout(function(){ a = 10; end.call(self); }, 2000)');
注意,我設置一個變量,self
,是this
,然後調用end
時,這使我們能夠在通話過程中設置this
特定值使用Function#call
。這是有效的,因爲傳遞給setTimeout
的匿名函數引用了創建它的執行上下文以及其中的所有變量,因此可以訪問self
(和a
)。
如果使用eval
(我沒有看到一個在這裏)一個很好的理由不,我不會,只是這樣做:
function end(){ console.log(this); }
var a = 0, self = this; setTimeout(function(){ a = 10; end.call(self); }, 2000);
你也可以創建第二個功能當被叫時,轉身並撥打end
以及this
的值。這就是所謂的結合,並通過ES5 Function#bind
function便利:
function end(){ console.log(this); }
var a = 0, boundEnd = end.bind(this); setTimeout(function(){ a = 10; boundEnd(); }, 2000);
由於您使用的NodeJS,你使用的V8引擎,其中有Function#bind
。 (如果你在瀏覽器中這樣做,如果你需要支持舊瀏覽器,你必須小心地爲bind
提供一個墊片。)
[你真的不應該使用'eval'(http) ://stackoverflow.com/q/197769/1615483)。 –
@Adam,將'end()'改爲'end.call({「a」:a})''。那是你要的嗎? – Pacerier