-1
の後にリダイレクトするにはどうすればよいですか?私はサミット形式の後に次のページに行きたい場合。ここに私のコードは反応ルータv4で 'browserHistory'を使用できないため、サマリーフォーム
let Profile = ({ history, handleSubmit }) => {
return (
<FirstSec>
<div>
<p>Profile</p>
<form onSubmit={handleSubmit(submit)} >
<div className="form-group">
<Field name="firstName" type="text" className="form-control" label="first name" component={renderField} />
<Field name="lastName" type="text" className="form-control" label="last name" component={renderField} />
<Field name="tel" type="tel" className="form-control" label="tel" component={renderField} />
<Field name="email" type="email" className="form-control" label="email" component={renderField} />
</div>
<button onClick={() => history.push('/apply/1/Occupation')}>Back</button>
<button type="submit">Next</button>
</form>
</div>
</FirstSec>
);
}です。
Profile = reduxForm({ form: 'profile' })(Profile);