在模板字符串中插入新行?

时间:2018-03-17 12:26:33

标签: javascript ecmascript-6 template-strings

我尝试将它分成两行:

const templateString = `this is my template 
                        string`

我也尝试过:

const templateString = `this is my template\n string`

但这些都不起作用。 templateString仍然是一行。如何创建多行模板字符串?

1 个答案:

答案 0 :(得分:2)

这需要<br>标记。如果您添加<br>标记,则首次尝试是正确的。