标签: javascript node.js es6-promise
为什么以下代码抛出[TypeError:_runMicrotasks不是函数]?我试过iojs 2.3.4和3.0nightly。 我还没有在Chrome上测试过,但它在FFox上按预期工作。
var p= new Promise(function(res,rej) { res(true); }); p.then(Promise.reject) .then(null,function(e){console.log(e);} );