我是新手做出反应并尝试更改页面标题,我无法使用prop进行字符串连接。我尝试使用 - ,+等我没有得到它。可以帮助。
document.title = this.props.messages.Title - this.props.messages.bookshelf;
答案 0 :(得分:2)
您可以使用模板文字:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals
document.title = `${this.props.messages.Title} - ${this.props.messages.bookshelf}`;