我是 ReactJS 和 React- 路由器的新手。我有一个组件,通过道具从 反应路由器接收一个 <Link/>
对象。每当用户点击组件中的“ next”按钮时,我都想手动调用 <Link/>
对象。
现在,我正在使用 裁判访问 支持实例并手动单击 <Link/>
生成的‘ a’标记。
问: 是否有手动调用 Link 的方法(例如 this.props.next.go
) ?
这是我现在的代码:
//in MasterPage.js
var sampleLink = <Link to="/sample">Go To Sample</Link>
<Document next={sampleLink} />
//in Document.js
...
var Document = React.createClass({
_onClickNext: function() {
var next = this.refs.next.getDOMNode();
next.querySelectorAll('a').item(0).click(); //this sounds like hack to me
},
render: function() {
return (
...
<div ref="next">{this.props.next} <img src="rightArrow.png" onClick={this._onClickNext}/></div>
...
);
}
});
...
这是我想要的密码:
//in MasterPage.js
var sampleLink = <Link to="/sample">Go To Sample</Link>
<Document next={sampleLink} />
//in Document.js
...
var Document = React.createClass({
render: function() {
return (
...
<div onClick={this.props.next.go}>{this.props.next.label} <img src="rightArrow.png" /> </div>
...
);
}
});
...