2

我有这个:

function change( event, file ) {
  console.log( "filename", file );
  //It should be '_file', not 'file'.
  files.clients( file, function( clientOfFile ) {
    console.log( "for client:", clientOfFile );
    io.sockets.socket( clientOfFile ).emit( "change" );
  } );
}

client.on( "watch", function( file ) {
   _file = base + file; //filename with path
   files.add( _file, client.id );
   fs.watch( _file, change );
} );

fs.watch传递给回调一个没有路径的文件名。所以我希望它得到父函数参数_file。我以为我可以使用.call,但如何在回调中做到这一点?

4

1 回答 1

3

很多可能性,一种是使用Function.prototype.bind,如果您不需要this value在回调中访问原始文件:

fs.watch( _file, change.bind({_file: _file});

这样你就可以_file像访问

this._file;

在您的回调方法中。


提醒一句:请注意,您在回调方法中使用了另一个匿名函数来回调files.clients. this不在那里引用相同的值。因此,如果您想在那里访问我们新传递的this引用,您需要调用另一个.bind()调用或将外部引用存储this在局部变量中。

于 2012-04-11T15:22:30.027 回答