react-router(v4)如何返回?

react-router(v4)如何返回?,第1张

react-router(v4)如何返回

我认为问题在于绑定

constructor(props){   super(props);   this.goBack = this.goBack.bind(this); // i think you are missing this}goBack(){    this.props.history.goBack();}.....<button onClick={this.goBack}>Go Back</button>

正如我在发布代码之前所假设的那样:

constructor(props) {    super(props);    this.handleNext = this.handleNext.bind(this);    this.handleBack = this.handleBack.bind(this); // you are missing this line}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5477209.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存