模版字符串
ES6中提供了模版字符串,****用`(反引号)标识,用${}将变量括起来。上面的例子可以用模版字符串写成下面这样:
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> $("#result").append(
`He is <b>${person.name}</b>and we wish to know his${person.age}.that is all`
);</pre>
这样的做法就简洁了很多,我们不需要再使用大量的""和+来拼接字符串和变量。
2. 当然,模版字符串可以引入变量,不使用变量也是可以的。如下所示:
`` I am a man.``
`` No matter what you do,`
`I trust you.``
3. 我们还可以先定义变量,然后在模版字符串中嵌入变量:
`var name="zzw";`
`` ${name},no matter what you do,`
`I trust you.``
4.显然,由于反引号是模版字符串的标识,如果我们需要在字符串中使用反引号,我们就需要对其进行转义,如下所示:
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> `No matter\` what you do,
I trust you.` </pre>
5.注意:如果使用模版字符串表示多行字符串,所有的空格和缩进都会被保存在输出中!!
`console.log( `No matter\` what you do,`
`I trust you.`);`
输出结果如下:
image
6. 在${}中的大括号里可以放入任意的JavaScript表达式,还可以进行运算,以及引用对象属性。
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> var x=88; var y=100;
console.log(x=${++x},y=${x+y}
);</pre>
结果如下所示:
image7.更强大的是:模版字符串还可以调用函数:
function string(){
return "zzw likes es6!";
}
console.log(
你想说什么?`
嗯,${string()}
);`
|
结果如下所示:
image另外,如果函数的结果不是字符串,那么,将按照一般的规则转化为字符串:
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> function string(){ return 666;
}
console.log(你想说什么? 嗯,${string()}
);</pre>
结果如下所示:
image在这里,实际上数字666被转化成了字符串666.
8.如果在${}中的变量时没有命名的,那么会报错:
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> console.log(你想说什么? 嗯,${string()}
);</pre>
在上面这句代码中,string()函数没有声明,于是报错:
image9.其实,我们还可以在${}中输入一个字符串,知识结果仍旧会返回一个字符串:
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> console.log(你想说什么? 嗯,${"其实我不是变量~"}
);</pre>
结果如下所示:
image10.如果希望引用模版字符串本身,可以像下面这样写:
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;"> let str="return"+"Hello! ${name}
";
let func=new Function("name",str);
console.log(func("zzw"));</pre>
结果如下:
![image](https://img.haomeiwen.com/i14940568/bc2843105389a949.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)