我正在使用reactjs路由器的链接组件,我无法使onClickevent正常工作.这是代码:
<Link to={this.props.myroute} onClick='hello()'>Here</Link>
这是这样做的方式还是其他方式?
您将hello()作为字符串传递,hello()表示立即执行hello.
原文链接:https://www.f2er.com/react/301300.html尝试
onClick={hello}