我似乎无法访问在 redux-observable 管道中使用 RTK 切片创建的操作的有效负载。我想知道 redux-observable 是否设计为与 RTK 一起使用,以及我是否应该改用 typesafe-actions。
export const signUrlsEpic = (action$: Observable<Action>): Observable<Action> =>
action$.pipe(
ofType(actions.getPresignedUrls),
exhaustMap((action.payload) => // <- Here: Property 'payload' does not exist on type 'Action<any>'
from(api.getPresignedUrls(action.arguments)).pipe(
map((response) => {
console.log(response)
return actions.setPresignedUrls(response)
})
)
)
)
动作是从 slice.actions 中导出的。我试图将动作转换为 ActionCreatorWithPayload 但它没有帮助。