我正在 Visual Studio 2017 提供的 reactjs 模板中创建一个小型 Web 应用程序。我遇到了一种情况,我希望将函数作为状态传递给子组件,然后通过子组件调用该函数。我有一个标题组件,其中有一个名为setLogInTrue()的方法,我想将其传递给我的 SignIn 组件。以下是我的代码:-
头文件.tsx
class HeaderState {
isLoggedIn: boolean;
}
export class Header extends React.Component<HeaderProps, HeaderState> {
constructor() {
super()
this.state = ({ isLoggedIn: false });
this.setLogInTrue= this.setLogInTrue.bind(this);
}
setLogInTrue() {
this.setState({ isLoggedIn: true });
}
public render(){
//Some elements
<NavLink className="link header_row_link" to={{ pathname: '/signIn', state: this.setLogInTrue }}> //<-- i thought this would work and give the function in the location of SignIn components state but it does not.
Sign In
</NavLink>
}
}
登录.tsx
export class SignIn extends React.Component<RouteComponentProps<{}>, {}> {
constructor() {
super();
}
public render() {
return <div className="signin_wrapper">
<SignInContent />
</div>;
}
}
我想在此处访问该函数并将其传递给 SignInContent 组件,然后从那里调用该函数。
这段代码没有给我任何编译时错误,但是每当我点击登录链接时,它都会给我以下错误
未捕获的 DOMException:无法在“历史”上执行“pushState”:函数 () { [本机代码] } 无法克隆。
我试过这个解决方案,但它对我不起作用。它仍然给我这个错误或给状态为未定义。我对react很陌生,任何帮助将不胜感激