美文网首页
字符串模板补充

字符串模板补充

作者: 静小弟 | 来源:发表于2020-03-06 15:25 被阅读0次

    带标签的模板

    let a = 1
    let b = 2
    function tag (strings, ...params) {
        console.log(strings) // 所有字符串的集合 [hello, '', world]
        console.log(params) // 所有转译内容的集合 [3, 2]
    }
    tag`hello ${a + b} world ${a * b}`
    // tag([hello, '',world], 2,3)
    
    • 原始字符串

    在标签函数的第一个参数中,存在一个raw属性,可以访问原始字符串

    function tag(strings) {
        console.log(strings.raw)
    }
    tag`string text line 1 \n string text line 2`;
    // 打印出来的字符串是包含'\' 'n' 就是字符串没有被 \n 转译成换行 
    

    官方文档

    相关文章

      网友评论

          本文标题:字符串模板补充

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