我是反应新手,我正在学习使用 typescript 进行反应编程导航。因为大多数教程都使用 java 脚本,所以我无法解决使用 typescript 编程导航的问题
正如我尝试过的大多数教程一样
this.props.history.push("/page");
显示错误“历史”在类型上不存在
我尝试了几种解决方案,例如
const history=createBrowserHistory();
history.push("/page")
此方法将更改 url 路径,但组件不会加载,如此处所述https://github.com/ReactTraining/react-router/issues/4059
我也尝试了另一种解决方案
this.context.push("/page");
这给了我以下错误 TypeError: _this.context.push is not a function
我的完整代码
import * as queryString from 'query-string';
import * as React from 'react';
interface IrentalProps{
name:string,
}
class Rental extends React.Component<IrentalProps, any> {
public extracturl=()=>{
const stringfy=queryString.parse(location.search);
return stringfy.id;
}
public handleClick=()=>{
this.context.push("/page"); //issue
}
public render() {
return (
<div style={{paddingTop:100}}>
{this.extracturl()}
<button onClick={this.handleClick}>navigate</button> //calling the function
</div>
);
}
}
export default Rental;
我只需要使用打字稿和浏览器路由器在 SPA 中单击按钮导航到另一个页面
注意:redirect 正在工作,并且带有 createhashhistory() 的 hashrouter 也正在工作。