美文网首页
模版字符串

模版字符串

作者: 我是syq吖 | 来源:发表于2019-06-11 09:59 被阅读0次

    ES6中提供了模版字符串,****用`(反引号)标识,用${}将变量括起来。上面的例子可以用模版字符串写成下面这样:

    <pre style="margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; font-family: &quot;Courier New&quot; !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: &quot;Courier New&quot; !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>

    结果如下所示:

    image

    7.更强大的是:模版字符串还可以调用函数:

    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()函数没有声明,于是报错:

    image

    9.其实,我们还可以在${}中输入一个字符串,知识结果仍旧会返回一个字符串:

    <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>

    结果如下所示:

    image

    10.如果希望引用模版字符串本身,可以像下面这样写:

    <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)
    

    相关文章

      网友评论

          本文标题:模版字符串

          本文链接:https://www.haomeiwen.com/subject/tzlffctx.html