gpt4 book ai didi

redux - 如何使 ngrx 效果等待异步函数

转载 作者:行者123 更新时间:2023-12-03 23:13:00 26 4
gpt4 key购买 nike

我正在使用 node-keytar在 Electron 应用程序中存储 token 。它使用 promise ,因此我需要等待 promise 解决以获取 token 。

我尝试创建的效果将调用身份验证服务以获取 token ,然后使用 Angular 将该 token 发送到后端 API http称呼。这里的问题是在 Effect 中调用服务函数。由于服务功能需要await回复 keytar整个函数必须是 async ,但据我所知,没有办法使 Effect 本身与 async 异步。关键词。

我应该在这里使用不同的架构吗?我试过使用 .then()并从内部返回成功操作,但这会引发类型错误。

效果(目前有错误 Type Observable<{}> is not assignable to type Observable<Action> ):

  setAccount$: Observable<Action> = this.actions$.pipe(
ofType<SetCurrentAccountPending>(AccountActions.ActionTypes.SetCurrentAccountPending),
switchMap(action => {
return this.accountService.setCurrentAccount(action.payload).pipe(
map(
() => new AccountActions.SetCurrentAccountSuccess(action.payload)
),
catchError(() => {
return of(new AccountActions.SetCurrentAccountFailure());
})
);
})
);

服务功能:
async setCurrentAccount(id: string) {
const password = await AccountHandler.getPasswordFromManager(id);
const body = {password: password};
return this.httpClient.post(environment.localApi + '/accounts/' + id, body);
}

最佳答案

这样的事情有帮助吗?

  setAccount$: Observable<Action> = this.actions$.pipe(
ofType<SetCurrentAccountPending>(AccountActions.ActionTypes.SetCurrentAccountPending),
switchMap(action => this.accountService.setCurrentAccount(action.payload)),
map(data => new AccountActions.SetCurrentAccountSuccess(data)),
catchError(error => of(new AccountActions.SetCurrentAccountFailure()))
);

关于redux - 如何使 ngrx 效果等待异步函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55580148/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com