ฉันจะแก้ไขสเตจนี้ได้อย่างไร?
เป็นแบบนั้น :
setTimeout((function(_deepFunction ,_deepData){
var _deepResultFunction = function _deepResultFunction(){
_deepFunction(_deepData);
};
return _deepResultFunction;
})(fromOuterFunction, fromOuterData ) , 1000 );
setTimeout รอการอ้างอิงไปยังฟังก์ชั่นดังนั้นฉันจึงสร้างมันขึ้นมาในช่วงปิดซึ่ง interprete ข้อมูลของฉันและส่งคืนฟังก์ชั่นที่มีอินสแตนซ์ที่ดีของข้อมูลของฉัน!
บางทีคุณสามารถปรับปรุงส่วนนี้:
_deepFunction(_deepData);
// change to something like :
_deepFunction.apply(contextFromParams , args);
ฉันทดสอบด้วย chrome, firefox และ IE และทำงานได้ดีฉันไม่รู้เกี่ยวกับประสิทธิภาพ แต่ฉันต้องการให้ทำงานได้
การทดสอบตัวอย่าง:
myDelay_function = function(fn , params , ctxt , _time){
setTimeout((function(_deepFunction ,_deepData, _deepCtxt){
var _deepResultFunction = function _deepResultFunction(){
//_deepFunction(_deepData);
_deepFunction.call( _deepCtxt , _deepData);
};
return _deepResultFunction;
})(fn , params , ctxt)
, _time)
};
// the function to be used :
myFunc = function(param){ console.log(param + this.name) }
// note that we call this.name
// a context object :
myObjet = {
id : "myId" ,
name : "myName"
}
// setting a parmeter
myParamter = "I am the outer parameter : ";
//and now let's make the call :
myDelay_function(myFunc , myParamter , myObjet , 1000)
// this will produce this result on the console line :
// I am the outer parameter : myName
บางทีคุณสามารถเปลี่ยนลายเซ็นเพื่อให้มันน่าพึงพอใจมากขึ้น:
myNass_setTimeOut = function (fn , _time , params , ctxt ){
return setTimeout((function(_deepFunction ,_deepData, _deepCtxt){
var _deepResultFunction = function _deepResultFunction(){
//_deepFunction(_deepData);
_deepFunction.apply( _deepCtxt , _deepData);
};
return _deepResultFunction;
})(fn , params , ctxt)
, _time)
};
// and try again :
for(var i=0; i<10; i++){
myNass_setTimeOut(console.log ,1000 , [i] , console)
}
และสุดท้ายที่จะตอบคำถามเดิม:
myNass_setTimeOut( postinsql, 4000, topicId );
หวังว่ามันจะช่วยได้!
ps: ขอโทษ แต่ภาษาอังกฤษไม่ใช่ภาษาแม่ของฉัน!