0

index.jsのように見えます:

const store = configureStore()

render(
    <Root history={history} store={store} />,
  document.getElementById('root')
)

そして私のようにRoot.js見える:

class Root extends Component {
  render() {
    const { store } = this.props

    return (
      <Provider store={store}>
          <ReduxRouter />
      </Provider>
    )
  }
}

Root.propTypes = {
  store: PropTypes.object.isRequired,
  history: PropTypes.object
}

export default Root

そして私のconfigureStore.jsは次のようなものです:

export default function configureStore() {

  let createStoreWithMiddleware = compose(
    applyMiddleware(thunk),
    reduxReactRouter({ routes, createHistory })
    )(createStore)

  const store = createStoreWithMiddleware(rootReducer)

  return store

routes.js:

const routes =  (
    <Router>
        <Route path={"/"} component={LoginView}>
        <Route path={"/login"} component={DashboardView} />
        </Route>
  </Router>
)

export default routes

そして私のLoginViewコンポーネントは次のようなものです:

class LoginView extends Component {

    componentDidMount(){
        const {actions} = this.props
        actions.login()
    }

    render() {
        console.log("printing props")
        console.log(this.props)
        console.log(this.props.history)
        return (
            <div>
                <Login />
            </div>
        )
    }
}

export default LoginView


function mapStateToProps(state) {
    return {
        login: state.login
    }
}

function mapDispatchToProps(dispatch) {
  return {
    actions: bindActionCreators(Actions, dispatch)
    }
}

export default connect(mapStateToProps, mapDispatchToProps)(LoginView)

に関して非常に混乱していhistoryます。私のコンポーネントではhistory、小道具を取得しています。コンポーネントでthis.props.history行ったように。console.log(this.props.history)

しかし、私の中でactionsはどうにもなりませんhistory..

私の行動は次のようなものです:

export function login(){

    return (dispatch, getState, history) => {
        console.log("get state")
        console.log(getState())
        console.log("history")
        console.log(history)
        var message = "hellooww world"
        return { message, type: loginTypes.LOGIN }
    }
}

ここでは取得できますが、取得できgetState()ませんhistory

したい場合はredirecthistory次のようにリダイレクトできるようにしたい:

history.pushState(null, '/dashboard')

誰でも私を助けることができます..?これには本当に困惑..

4

1 に答える 1

0

アクションから移行する簡単な方法を提供するこの GitHub ページを見つけました。おそらく役立つでしょう (ログイン アクションの例があります)。

https://github.com/johanneslumpe/redux-history-transitions

于 2016-04-27T18:20:43.910 に答える