美文网首页
js模板语法前的函数

js模板语法前的函数

作者: Wrestle_Mania | 来源:发表于2021-06-01 10:04 被阅读0次
        let lesson = [
          {
            title: "语文",
            author: "张三",
          },
          {
            title: "数学",
            author: "李四",
          },
          {
            title: "英语",
            author: "王五",
          },
        ];
    
        function template() {
          return `
          <ul>${lesson
            .map((item) => links`<li>课程:${item.title} 老师:${item.author}</li>`)
            .join("")}</ul>`;
        }
    
        function links(strings, ...vars) {
          return strings.map((item, index) => item + (vars[index] || ""));
        }
    

    相关文章

      网友评论

          本文标题:js模板语法前的函数

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