4

我试过把它分成两行:

const templateString = `this is my template 
                        string`

我也试过:

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

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

4

1 回答 1

0

那将需要一个<br>标签。如果您添加<br>标签,您的第一次尝试是正确的。

于 2018-03-20T11:35:12.347 回答