React-router渲染事件

时间:2016-04-18 02:27:56

标签: reactjs angular-ui-router react-router

在呈现组件时,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.

1 个答案:

答案 0 :(得分:0)

在要路由到的组件上使用componentDidMount生命周期方法。

var YourComponent = React.createClass({

    componentDidMount: function() {
      // Code here
    },

    componentWillUnmount: function() {
    },

    render: function() {
      return (
        <div>

        </div>
      );
    }
});

module.exports = YourComponent;