反应道具中的字符串连接

时间:2017-12-20 11:29:56

标签: reactjs

我是新手做出反应并尝试更改页面标题,我无法使用prop进行字符串连接。我尝试使用 - ,+等我没有得到它。可以帮助。

document.title = this.props.messages.Title - this.props.messages.bookshelf;

1 个答案:

答案 0 :(得分:2)

您可以使用模板文字:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals

document.title = `${this.props.messages.Title} - ${this.props.messages.bookshelf}`;