React-Router:在组件中打印页面标题?

时间:2016-08-10 14:46:56

标签: reactjs react-router react-redux

我正在努力解决如何在React / React-Router中打印当前页面标题的问题。我目前有什么:

路线:

<Route path='parent' component={Parent}>
    <Route path='child1' component={Child1}/>
    <Route path='child2' component={Child2}/>
    <Route path='child3' component={Child3}/>

组件:

const Vehicle = React.createClass({
    render() {
        return (
            <h4 className="sub-title col-12">{this.state.title}</h4>
        );
    }
});

1 个答案:

答案 0 :(得分:1)

如果我正确理解您,您可以使用document.title获取网页标题:

const Vehicle = React.createClass({
    render() {
        return (
            <h4 className="sub-title col-12">{document.title}</h4>
        );
    }
});