数据渲染模板引擎,template-web的使用

时间:2024-03-12 20:40:29

一:下载 template-web.js

  下载地址:https://aui.github.io/art-template/zh-cn/docs/installation.html

 

二:引用:

 

 

三:html部分:

    

四:js调用:

    

    

    test 是你在上面定义script 的ID名,arr[0],是数据部分,arr 是数组,arr[0]是数组里的一个对象,例子:

 

    arr = [ 

        {

          title:"李俊涛",

          creatTime:"2018-03-07",

          content:"你好,世界!!"

        }

       ]

      上述只是个例子,数组里面可以放多个对象,完了你自己遍历,再添加就好了,

      例如:

        

    就这么多吧,有问题私聊或评论都可!!!