我正在努力解决如何在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>
);
}
});
答案 0 :(得分:1)
如果我正确理解您,您可以使用document.title
获取网页标题:
const Vehicle = React.createClass({
render() {
return (
<h4 className="sub-title col-12">{document.title}</h4>
);
}
});