カスタム アクションが正常に実行された後にリストを更新しようとしています。
admin on rest チュートリアルのサガを使用しました
function * actionApproveSuccess () {
yield put(showNotification('Executed'))
yield put(push('/comments'))
// does not refresh, because the route does not change
// react-redux-router also has no refresh() method, like react-router has...
}
私が持っていたもう1つのアイデアは、リストコンポーネントの更新アクションを何らかの方法でトリガーすることでしたが、それにアクセスする方法や、ACTION_SUCCESSイベントに接続する方法がわかりません。