在呈现组件时,react-router是否会触发事件?我没有在它的github wiki页面中找到它。
就像Angular ui-router中的这个事件一样:
$viewContentLoaded - fired once the view is loaded, after the DOM is rendered. The '$scope' of the view emits the event.
答案 0 :(得分:0)
在要路由到的组件上使用componentDidMount
生命周期方法。
var YourComponent = React.createClass({
componentDidMount: function() {
// Code here
},
componentWillUnmount: function() {
},
render: function() {
return (
<div>
</div>
);
}
});
module.exports = YourComponent;