我检查了很多答案,但仍然出现此错误。
import JobListing from './JobListing.jsx';
import createHistory from "history/createBrowserHistory";
const history = createHistory();`
handleSubmit(event) {
event.preventDefault();
this.setState({keyword: this.state.value,country:
this.state.selectedOption,showForm : false});
this.props.history.push('/joblisting');
}
答案 0 :(得分:1)
您引用的是this.props.history,而您定义的是本地范围的历史记录const:
更改您的:
this.props.history.push('/joblisting');
收件人:
history.push('/joblisting');