2

ドキュメントによると、LOCATION_CHANGEを呼び出すことでイベントを発生させることができるはずpush('/with/the/path')です。ドキュメントの例:

import { routerMiddleware, push } from 'react-router-redux'

// Apply the middleware to the store
const middleware = routerMiddleware(browserHistory)
const store = createStore(
  reducers,
  applyMiddleware(middleware)
)

// Dispatch from anywhere like normal.
store.dispatch(push('/foo'))

ただし、プッシュを呼び出すと、次のようになります (何もしていないように見えます)。

ここに画像の説明を入力

私は何が欠けていますか?

4

1 に答える 1