当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Domain.bind(callback)用法及代码示例


domain.bind(callback)

返回的函数将是提供的回调函数的包装器。当调用返回的函数时,抛出的任何错误都将被路由到域的'error' 事件。

const d = domain.create();

function readSomeFile(filename, cb) {
  fs.readFile(filename, 'utf8', d.bind((er, data) => {
    // If this throws, it will also be passed to the domain.
    return cb(er, data ? JSON.parse(data) : null);
  }));
}

d.on('error', (er) => {
  // An error occurred somewhere. If we throw it now, it will crash the program
  // with the normal line number and stack message.
});

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 Domain.bind(callback)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。