作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码来自https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function .
我不明白 resolveAfter2Seconds(20)
如何为变量 a 返回 20
。
在我看来,从 resolved Promise
获取“返回值”的唯一方法是使用 Promise.prototype.then()
。下面的代码没有使用 then()
但仍然可以获得 20
。为什么?我是否遗漏了什么或误解了什么?
function resolveAfter2Seconds(x) {
return new Promise(resolve => {
setTimeout(() => {
resolve(x);
}, 2000);
});
}
async function add1(x) {
var a = resolveAfter2Seconds(20);
var b = resolveAfter2Seconds(30);
return x + await a + await b;
}
add1(10).then(v => {
console.log(v); // prints 60 after 2 seconds.
});
async function add2(x) {
var a = await resolveAfter2Seconds(20);
var b = await resolveAfter2Seconds(30);
return x + a + b;
}
add2(10).then(v => {
console.log(v); // prints 60 after 4 seconds.
});
最佳答案
为此我们需要使用 try-catch
block 。你可以引用这个例子:
function resolveAfter2Seconds(x) {
return new Promise(reject => {
setTimeout(() => {
reject(x);
}, 2000);
});
}
async function add1(x) {
try {
return await resolveAfter2Seconds(20);
} catch (e) {
return e
}
}
add1(10).then(v => {
console.log(v);
});
关于javascript - `resolveAfter2Seconds `如何返回20?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44581649/
我是一名优秀的程序员,十分优秀!