编程语言
首页 > 编程语言> > node核心模块promise化

node核心模块promise化

作者:互联网

  1. 先安装 bluebird
npm install bluebird
  1. 使用promisifyAll函数,可以将模块导出的接口promise化,注意处理后的API函数名加Async如:fs.readFileAsync()
var Promise = require('bluebird')
const fs = Promise.promisifyAll(require('fs'))
fs.readFileAsync('./1.j').then(value => {
  console.log(value.toString());
}).catch(err => {
  console.log(err);
})
fs.writeFileAsync('驿外.txt', '驿外断桥边').then(value => {
  console.log(value);
})

标签:node,fs,console,log,value,promise,模块,bluebird
来源: https://www.cnblogs.com/dingtongya/p/14773744.html