本人是菜鸟勿喷
先看主要代码,想取URL的地址中的参数:
export interface JobListPageProps extends RouteComponentProps{
jobList: JobModel;
dispatch: Dispatch;
}
class JobListPage extends Component<JobListPageProps>{
componentDidMount() {
const {current= 1, pageSize= 10 } = this.props.history.location.query;
};
}
在idea编辑器中typescript在this.props.history.location.query
这个位置报出的问题
TS2339: Property 'query' does not exist on type 'Location<any>'.
请问应该怎么定义JobListPageProps
?
感谢