这是我的代码
var Promise = require('bluebird');
var fse = Promise.promisifyAll(require('fs-extra'));
fse.remove('./myDir').then(function () {
console.log('Remove myDir done.')
});
我总是TypeError: Cannot read property 'then' of undefined
出错。
版本:
node: v6.9.2
bluebird: 3.4.7
fs-extra: 1.0.0
我搜索并发现了一个类似的问题,但并不完全相同,我尝试了这个答案,不幸的是,它无法解决我的问题。
我错过了什么吗?