art-template模板判断

1.添加模板
          {{ if id == null }}
          登录 
              注册
              我的订单  
          {{ else if id != null }}
          
              您好,欢迎您来到蕴锦IT服务平台 {{nickName}} 
              退出登录
              我的订单  
              {{ /if }}
        
 
2.jquery获取页面模板并引入template到jQuery并返回到页面
$(function(){
    var $userinfo=$('#userInfo1');
    const users=localStorage.getItem("usercurre");
    var user=JSON.parse(users);
    console.log(user)
    var html =template('userinfo',user);
    $userinfo.html(html);
})

你可能感兴趣的:(art-template模板判断)