在现代前端开发中,es6的模板字符串可以说是除了let const之外我们使用得最多的es6新特性了。然而,我们经常会遇到一个问题就是代码换行问题,以前写字符串换行时,我们都是通过 拼接字符串的,这样最后的拼接结果也是正常的字符串,例如
代码语言:javascript复制var str = 'hello'
' world'
consle.log(str); // 结果为 hello world
当我们使用模板字符串时,如果我们这样写
代码语言:javascript复制const str = `hello
world`;
consle.log(str);
那上面的打印结果会是 hello world
这显然不是我们希望的结果。 解决方案如下
代码语言:javascript复制const str = `hello
world`;
consle.log(str);
官方文档说明 https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Template_literals
这也是unix shell脚本的历史性解决方案)是使用转义字符 来转义回车