标签: angular typescript ionic-framework ionic3
我正在构建一个ionic 3应用程序,我想通过调用api来了解令牌是否已过期。我想询问用户密码是否令牌已过期。在setInterval()中调用api是一种不好的方法吗?
this.setInt = setInterval(() => { this.storage.get('api_token').then((val) => { //calling the api and checking token }); });
在离子3中有更好的方法吗?