之间有什么区别?
new Promise(function(res, rej) {
res("aaa");
})
.then(function(result) {
return "bbb";
})
.then(function(result) {
console.log(result);
});
还有这个:
new Promise(function(res, rej) {
res("aaa");
})
.then(function(result) {
return Promise.resolve("bbb");
})
.then(function(result) {
console.log(result);
});
我问的是我正在使用Angular和$ http服务以及链接.then()时出现不同的行为。因此,代码太多了,因此首先是上面的示例。
守着一只汪
相关分类