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


Node.js util.callbackify()用法及代码示例


util.callbackify()方法是util模块的内置应用程序编程接口,用于运行异步函数并在node.js中获取回调。

用法:

util.callbackify( async_function )

参数:该方法接受上述和以下描述的单个参数。



  • async_function:它是必需的参数,表示原始异步函数。

返回值:它以error-first回调样式函数的形式返回Promise。它以(err,ret)=> {}作为参数,其第一个参数是错误或拒绝原因,可能为null(当promise被解决时),第二个参数是已解决的值。

以下示例说明了Node.js中util.callbackify()方法的使用:

范例1:

// Node.js program to demonstrate the    
// util.callbackify() Method  
  
// Allocating util module 
const util = require('util'); 
  
// Async function to be called 
// from util.callbackify() method 
async function async_function() { 
    return 'message from async function'; 
} 
  
// Calling callbackify() 
const callback_function =  
        util.callbackify(async_function); 
  
// Listner for callback_function 
callback_function((err, ret) => { 
    if (err) throw err; 
    console.log(ret); 
});

输出:

message from async function

范例2:

// Node.js program to demonstrate the    
// util.callbackify() Method  
  
// Allocating util module 
const util = require('util'); 
  
// Async function to be called  
// from util.callbackify() method 
async function async_function() { 
    return Promise.reject(new Error( 
        'this is an error message!')); 
} 
  
// Calling callbackify() 
const callback_function = 
    util.callbackify(async_function); 
  
// Listner for callback_function 
callback_function((err, ret) => { 
  
    // If error occurs 
    if (err && err.hasOwnProperty('reason') 
        && err.reason === null) { 
  
        // Printing error reason 
        console.log(err.reason); 
    } else { 
        console.log(err); 
    } 
});

输出:

Error:this is an error message!
    at async_function (C:\nodejs\g\util\callbackify_2.js:6:25)
    at async_function (util.js:356:13)
    at Object. (C:\nodejs\g\util\callbackify_2.js:12:1)
    at Module._compile (internal/modules/cjs/loader.js:776:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:787:10)
    at Module.load (internal/modules/cjs/loader.js:653:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
    at Function.Module._load (internal/modules/cjs/loader.js:585:3)
    at Function.Module.runMain (internal/modules/cjs/loader.js:829:12)
    at startup (internal/bootstrap/node.js:283:19)

注意:上面的程序将通过使用node filename.js命令。

参考: https://nodejs.org/api/util.html#util_util_callbackify_original




相关用法


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