我试过把它分成两行:
const templateString = `this is my template
string`
我也试过:
const templateString = `this is my template\n string`
但这些都不起作用。templateString
仍然作为一条线出现。如何创建多行模板字符串?
我试过把它分成两行:
const templateString = `this is my template
string`
我也试过:
const templateString = `this is my template\n string`
但这些都不起作用。templateString
仍然作为一条线出现。如何创建多行模板字符串?