首页 > 其他 > 详细

node核心模块promise化

时间:2021-05-16 19:02:34      阅读:9      评论:0      收藏:0      [点我收藏+]
  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核心模块promise化

原文:https://www.cnblogs.com/dingtongya/p/14773744.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!