Bu aşamayı nasıl çözdüm?
aynen böyle :
setTimeout((function(_deepFunction ,_deepData){
var _deepResultFunction = function _deepResultFunction(){
_deepFunction(_deepData);
};
return _deepResultFunction;
})(fromOuterFunction, fromOuterData ) , 1000 );
setTimeout bir işleve bir referans beklemek, bu yüzden benim verileri yorumlamak ve verilerimin iyi bir örneği ile bir işlev döndürmek, bir kapatma oluşturdu!
Belki bu kısmı geliştirebilirsiniz:
_deepFunction(_deepData);
// change to something like :
_deepFunction.apply(contextFromParams , args);
Ben krom, firefox ve IE üzerinde test ve iyi yürütmek, ben performans hakkında bilmiyorum ama çalışması gerekiyordu.
bir örnek testi:
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
Belki imzayı daha uyumlu hale getirmek için değiştirebilirsiniz:
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)
}
Ve son soruya orijinal soruyu cevaplamak için:
myNass_setTimeOut( postinsql, 4000, topicId );
Umarım yardımcı olabilir!
ps: üzgünüm ama ingilizce bu benim ana dilim değil!