redux-observable动作必须是普通对象。使用自定义中间件进行异步操作

时间:2017-05-02 22:26:43

标签: react-native redux react-redux rxjs5 redux-observable

当我在下面的代码中注释掉getCurrentPositionEpic时,该应用有效。但如果我将其留下未注释,我会收到错误:

  

动作必须是普通对象。使用自定义中间件进行异步   动作。

export const rootEpic = combineEpics(
  fetchCategoriesEpic,
  getCurrentLocationEpic,
  getCurrentPositionEpic
)

const store = createStore(
  rootReducer,
  initialState,
  composeWithDevTools(
    applyMiddleware(createEpicMiddleware(rootEpic))
  )
)

location.epic.js

const getCurrentPosition$ = getCurrentPositionObservable(
  { enableHighAccuracy: true, timeout: 20000, maximumAge: 1000 }
)

getCurrentPosition$.subscribe(
  (position) => {
    console.log(position)
    const positionObject = {
      lat: position.coords.latitude,
      lng: position.coords.longitude
    }
    //store.dispatch(updateRegion(positionObject))
    //getCurrentLocation(positionObject)
  },
  (err) => {
    console.log('Error: %s', err)
  },
  () => {
    console.log('Completed')
  })

export const getCurrentLocationEpic = action$ =>
  action$.ofType(GET_CURRENT_LOCATION)
    .mergeMap(() =>
      Observable.fromPromise(Geocoder.geocodePosition(makeSelectLocation()))
        .flatMap((response) => Observable.of(
          getCurrentLocationFulfilled(response)
        ))
        .catch(error => Observable.of(getCurrentLocationRejected(error)))
    )

export const getCurrentPositionEpic = action$ =>
  action$.ofType(GET_CURRENT_POSITION)
    .mapTo(() => getCurrentPosition$
      .flatMap((response) => Observable.of(
        getCurrentPositionFulfilled(response)
      ))
      .catch(error => Observable.of(getCurrentLocationRejected(error)))
    )

下面的代码只是一个帮助器,用于将本机navigator.geolocation.getCurrentPosition反应转换为可观察的而不是采用回调的函数。

callBackToObservable.js

import { Observable } from 'rxjs'

export const getCurrentPositionObservable = Observable.bindCallback(
  (options, cb) => {
    if (typeof options === 'function') {
      cb = options
      options = null
    }
    navigator.geolocation.getCurrentPosition(cb, null, options)
  })

可能导致错误的原因是什么?

尝试在商店里传递:

export const getCurrentPositionFulfilledEpic = (action$, store) =>
  action$.ofType(GET_CURRENT_POSITION_FULFILLED)
        .mergeMap(() =>{
  console.log(store)***************** store is populated here
  return Observable.fromPromise(Geocoder.geocodePosition({
    lat: store.getState().get('searchForm').get('position').lat,***but not here
    lng: store.getState().get('searchForm').get('position').lng
  }))
    .flatMap((response) => Observable.of(
      getCurrentLocationFulfilled(response)
    ))
    .catch(error => Observable.of(getCurrentLocationRejected(error)))
}
)

https://github.com/devfd/react-native-geocoder用于Geocoder.geocodePosition

1 个答案:

答案 0 :(得分:4)

问题在于您使用mapTo。你基本上是在说“将这个动作映射到一个Observable”,所以现在你的史诗会返回一个Observable of Observable of actions Observable<Observable<Action>>,而不仅仅是一个Observable of actions。

换句话说,你的史诗现在正在发射Observable而不是发出动作。您需要使用合并策略运算符(如mergeMapswitchMap等)来合并以将内部Observable链展平/合并到顶级链中。 flatMapmergeMap的别名,顺便说一句。

export const getCurrentPositionEpic = action$ =>
  action$.ofType(GET_CURRENT_POSITION)
    .mergeMap(() => getCurrentPosition$
      .flatMap((response) => Observable.of(
        getCurrentPositionFulfilled(response)
      ))
      .catch(error => Observable.of(getCurrentLocationRejected(error)))
    )

另一件事 - 您不需要使用flatMap又名mergeMapgetCurrentPosition$映射到getCurrentPositionFulfilled操作,因为它是1:1。如果是1对多,你只需要它。

export const getCurrentPositionEpic = action$ =>
  action$.ofType(GET_CURRENT_POSITION)
    .mergeMap(() => getCurrentPosition$
      .map((response) => getCurrentPositionFulfilled(response))
      .catch(error => Observable.of(getCurrentLocationRejected(error)))
    )

用你的方式没有真正的伤害,但它可能会让以后维护代码的其他人感到困惑。