0
私はリアクションアプリケーションのために反応ルータv4を使用しています。フォームで反応ルータv4クエリパラメータを追加
、私はをonSubmitアクションにクエリパラメータを追加したい私のコードは次のようになり
:
class FiltroCuentasCorrientes extends Component {
...//Other stuff.
onSubmit(e) {
e.preventDefault();
const { someVariable, otherVariable } = this.state;
//Here I should add the variables to the query param.
}
render() {
<Form onSubmit={(e) => this.onSubmit(e)}>
...
</Form>
}
}
私が推奨されるアプローチが何であるかを知りません。
shouldAddParam
のようなローカル状態の変数を使用し、<Redirect />
を自分のパラメータにする必要がありますか?
router
コンテキストとnavigateTo
メソッドを使用しますか?
どうすればいいですか?