我尝试将它分成两行:
const templateString = `this is my template
string`
我也尝试过:
const templateString = `this is my template\n string`
但这些都不起作用。 templateString
仍然是一行。如何创建多行模板字符串?
答案 0 :(得分:2)
这需要<br>
标记。如果您添加<br>
标记,则首次尝试是正确的。