この段階をどのように解決しましたか?
そのように:
setTimeout((function(_deepFunction ,_deepData){
var _deepResultFunction = function _deepResultFunction(){
_deepFunction(_deepData);
};
return _deepResultFunction;
})(fromOuterFunction, fromOuterData ) , 1000 );
setTimeoutは関数への参照を待機するため、データを解釈し、データの適切なインスタンスを含む関数を返すクロージャーでそれを作成しました。
多分あなたはこの部分を改善することができます:
_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:申し訳ありませんが、英語は私の母国語ではありません!