Typescript returning boolean after promise resolved(承诺解决后打字稿返回布尔值)
问题描述
我试图在承诺解决后返回一个布尔值,但打字稿给出错误提示
I'm trying to return a boolean after a promise resolves but typescript gives an error saying
get"访问器必须返回一个值.
我的代码看起来像.
get tokenValid(): boolean {
// Check if current time is past access token's expiration
this.storage.get('expires_at').then((expiresAt) => {
return Date.now() < expiresAt;
}).catch((err) => { return false });
}
此代码适用于 Ionic 3 应用程序,存储为 Ionic Storage 实例.
This code is for Ionic 3 Application and the storage is Ionic Storage instance.
推荐答案
你可以返回一个 Promise
,它会解析成这样的布尔值:
You can return a Promise
that resolves to a boolean like this:
get tokenValid(): Promise<boolean> {
// |
// |----- Note this additional return statement.
// v
return this.storage.get('expires_at')
.then((expiresAt) => {
return Date.now() < expiresAt;
})
.catch((err) => {
return false;
});
}
您问题中的代码只有两个返回语句:一个在 Promise 的 then
处理程序中,一个在其 catch
处理程序中.我们在 tokenValid()
访问器中添加了第三条 return 语句,因为访问器也需要返回一些东西.
The code in your question only has two return statements: one inside the Promise's then
handler and one inside its catch
handler. We added a third return statement inside the tokenValid()
accessor, because the accessor needs to return something too.
这是一个工作示例 在 TypeScript 游乐场:
class StorageManager {
// stub out storage for the demo
private storage = {
get: (prop: string): Promise<any> => {
return Promise.resolve(Date.now() + 86400000);
}
};
get tokenValid(): Promise<boolean> {
return this.storage.get('expires_at')
.then((expiresAt) => {
return Date.now() < expiresAt;
})
.catch((err) => {
return false;
});
}
}
const manager = new StorageManager();
manager.tokenValid.then((result) => {
window.alert(result); // true
});
这篇关于承诺解决后打字稿返回布尔值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:承诺解决后打字稿返回布尔值
基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01