在 es6 模板文字中,如何将长模板文字包装为多行而不在字符串中创建新行?

例如,如果您这样做:

const text = `a very long string that just continues
and continues and continues`

然后它将为字符串创建一个新的行符号,将其解释为有一个新行。如何在不创建换行符的情况下将长模板文字包装成多行?

最佳答案

如果在文本中的换行符处引入 line continuation ( \ ),则不会在输出上创建换行符:

const text = `a very long string that just continues\
and continues and continues`;
console.log(text); // a very long string that just continuesand continues and continues

关于javascript - 将长模板文字行包装为多行而不在字符串中创建新行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37321047/

10-13 00:54