这是我的代码:
this._api.getCompanies().subscribe(
res => this.companies = JSON.parse(res),
exception => {if(this._api.responseErrorProcess(exception)) { // in case this retured TRUE then I need to retry() } }
)
如果发生异常,它将被发送到 API 中的一个函数,然后true
如果问题得到修复(例如令牌刷新)则返回,并且它只需要在修复后再次重试
我不知道如何让它重试。