尝试使用browserify在浏览器中设置bluebird的配置时出现问题。这就是我想要做的事情:
window.Promise = require('bluebird');
Promise.config({
cancellation: true,
});
不幸的是我收到Promise.config is not a function.
我正在使用v3.4.1并尝试按照此处的文档进行操作:http://bluebirdjs.com/docs/api/promise.config.html
对于如何记住这种情况,任何人都有任何想法?我想在浏览器中使用可取消的蓝鸟Promise,但这样做需要设置配置。
谢谢!