layui 模板引擎

时间:2024-03-12 08:44:35

 在我接触的项目中,通常用到的前后端交互模板引擎是Layui框架,这个框架非常的简单适用,文档也介绍得一目了然,以下是我在项目中用到的部分代码

一、返回实体类型

$(function(){
   var id = common.getRequestParam("id");
   ajax.reques({
      type:"GET",
      url:
     
    "http://localhost:8080/zbxt/a/noap/hytzbxt/PurchaseHyt/details",
 data:{"id": id},             
               success : function(result){
                   console.info(result);
                                  layui.laytpl($("#bigs").html()).render({list: [result]}, function(html) {
                                      $("#detail_new").html(html);
                                      console.info($("#detail_new").html(html));
                                      });
               },
                    error: function() {
                      alert("异步请求失败!");
                    }
        }) 
        });
})

注意:common.getRequestParam("id"); ajax.reques是我封装了的,前面的文章有介绍,代码。[result]:这个对象返回的是实体

二、返回集合

 $(function () {
        
        $(".btn").click(function(){
            //if($("#postList").find("option:selected").text() == "职位"){
                param={};
                  param.post = $("#keywords").val();
               //}             
              loadList();
        });
        
        //function loadList(){
             ajax.request({
             type : "get", //jquey是不支持post方式跨域的
               async:false,
               url :"http://localhost:8080/zbxt/a/noap/hytzbxt/PurchaseHyt/list", //跨域请求的URL
            data:{"notice_type_cg":"pub_zb"},             
               success : function(result){
                                  layui.laytpl($("#big").html()).render({list: result}, function(html) {
                                      $("#big_new").html(html);
                                      console.info($("#big_new").html(html));
                                      });
               },
                    error: function() {
                      alert("异步请求失败!");
                    }
        }) 
        });

注意:result:返回的是list集合

 

最后,有些不懂的,多看看官方文档介绍,地址:https://www.layui.com/doc/