template的用法

1.首先引用template.js然后在html中定义一个空的容器 class名为“box”

2.在script中 定义ID名"first" 注意type type="text/template" script 中可以把所有html标签包裹在内 把从后台调取的值 用<%=data.code%>的方式赋值 3.ajax调用接口数据 $.ajax({ url:"/product/queryProduct",   type: "post",   dataType: "json",   data: { goods_type: goods_type },   success: function(data) {     console.log(data)

4.把获取到的数据通过template模板赋值给data 在上面取值即可
  $(’.box’).html(template(“first”, {
    data: data
  }));
}
})
5.如果要测试的话可用下列方法
template.helper(“getCo”,function () {
return console;
});

你可能感兴趣的:(template的用法)