Como resolvi esse estágio?
bem desse jeito :
setTimeout((function(_deepFunction ,_deepData){
var _deepResultFunction = function _deepResultFunction(){
_deepFunction(_deepData);
};
return _deepResultFunction;
})(fromOuterFunction, fromOuterData ) , 1000 );
setTimeout espera uma referência a uma função, então eu a criei em um fechamento, que interpreta meus dados e retorna uma função com uma boa instância dos meus dados!
Talvez você possa melhorar esta parte:
_deepFunction(_deepData);
// change to something like :
_deepFunction.apply(contextFromParams , args);
Eu testei no chrome, firefox e IE e ele executa bem, não sei sobre desempenho, mas precisava que ele estivesse funcionando.
uma amostra de teste:
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
Talvez você possa alterar a assinatura para torná-la mais compatível:
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)
}
E, finalmente, para responder à pergunta original:
myNass_setTimeOut( postinsql, 4000, topicId );
Espero que possa ajudar!
ps: desculpe mas inglês não é minha língua materna!