Come ho risolto questo stadio?
proprio così :
setTimeout((function(_deepFunction ,_deepData){
var _deepResultFunction = function _deepResultFunction(){
_deepFunction(_deepData);
};
return _deepResultFunction;
})(fromOuterFunction, fromOuterData ) , 1000 );
setTimeout attendo un riferimento a una funzione, quindi l'ho creato in una chiusura, che interpreta i miei dati e restituisce una funzione con una buona istanza dei miei dati!
Forse puoi migliorare questa parte:
_deepFunction(_deepData);
// change to something like :
_deepFunction.apply(contextFromParams , args);
L'ho testato su Chrome, Firefox e Internet Explorer e funziona bene, non conosco le prestazioni ma avevo bisogno che funzionasse.
un test di esempio:
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
Forse puoi modificare la firma per renderla più conforme:
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 infine per rispondere alla domanda originale:
myNass_setTimeOut( postinsql, 4000, topicId );
Spero che possa aiutare!
ps: scusa ma l'inglese non è la mia lingua madre!