0

我似乎无法访问在 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 但它没有帮助。

4

1 回答 1

0

其实错误很明显!有效负载不可用的原因是因为我将类型声明为Observable<Action>. 它应该被宣布Observable<PayloadAction>

于 2020-05-18T11:32:25.473 回答