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

Inserting a new line into a template string?

我试着把它分成两行:

const templateString = `this is my template 
                        string`

我也试过了:

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

但是 none 这些工作。 templateString 仍然是一行。如何创建多行模板字符串?

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