How to use layui template engine

angryTom
Release: 2019-07-31 10:46:52
Original
5625 people have browsed it

How to use layui template engine

If you want to know more about layui, you can click: layui tutorial

## Laytpl is a JavScript template engine that has excellent performance in character parsing, but its shortcomings lie in exception debugging. Since the traditional front-end template engine has become less popular, laytpl may be rewritten in the future. The current direction has not been decided yet, and it is expected to be implemented after layui is relatively stable.

Quick use

Different from general character splicing, laytpl’s template can be separated from the data, and the logical processing is centralized in the View layer to improve code maintainability, especially when rendering a large number of templates.

layui.use('laytpl', function(){
     var laytpl = layui.laytpl;//直接解析字符
     laytpl('{{ d.name }}是一位公猿').render({
          name: '贤心'
          }, function(string){
              console.log(string); //贤心是一位公猿
        });
      //你也可以采用下述同步写法,将 render 方法的回调函数剔除,可直接返回渲染好的字符
      var string =  laytpl('{{ d.name }}是一位公猿').render({
          name: '贤心'
       });
     console.log(string);  
     //贤心是一位公猿
     //如果模板较大,你也可以采用数据的写法,这样会比较直观一些
     laytpl([
         '{{ d.name }}是一位公猿',
         '其它字符 {{ d.content }}  其它字符'
         ].join(''))
      });
Copy after login

You can also store the template on the page or anywhere else:

//第一步:编写模版。你可以使用一个script标签存放模板,如:
<script id="demo" type="text/html">
    <h3>{{ d.title }}</h3>
    <ul>{{#  layui.each(d.list, function(index, item){ }}
       <li>
          <span>{{ item.modname }}</span>
          <span>{{ item.alias }}:</span>
          <span>{{ item.site || &#39;&#39; }}</span>
        </li>
        {{#  }); }}{{#  if(d.list.length === 0){ }}无数据{{#  } }}</ul>
</script>
//第二步:建立视图。用于呈现渲染结果。
<div id="view"></div>
//第三步:渲染模版
var data = { //数据"title":"Layui常用模块","list":[{"modname":"弹层","alias":"layer","site":"layer.layui.com"},{"modname":"表单","alias":"form"}]}
var getTpl = demo.innerHTML,
view = document.getElementById(&#39;view&#39;);
laytpl(getTpl).render(data, function(html){view.innerHTML = html;});
Copy after login

Template syntax

SyntaxDescriptionExample{{ d.field }}Output A normal field without escaping html
<div>{{ d.content }}</div>
Copy after login
{{= d.field }}Output a normal field without escaping html
<h2>{{= d.title }}</h2>
Copy after login
{{# JavaScript expression}}JS statement. Generally used for logic processing. Start with a delimiter followed by a # sign.
{{#
var fn = function(){return &#39;2017-08-18&#39;;
};
}}
{{#  if(true){ }}
开始日期:{{ fn() }}
{{#  } 
else { }}
已截止{{#  } }}
Copy after login
{{! template !}}Filter a specified template area, that is, the template in this area will not be parsed. Note: layui 2.1.6 adds new
<div> {{! 这里面的模板不会被解析  !}}</div>
Copy after login

Note: If you want to output a function, the correct way to write it is: {{ fn() }}, not: {{# fn() }}

## delimiter If the template's default {{ }} delimiter conflicts with your other templates (usually server-side templates), you can also redefine the delimiter:

laytpl.config({
  open: &#39;<%&#39;,
  close: &#39;%>&#39;
});
//分割符将必须采用上述定义的
laytpl([
  &#39;<%# var type = "公"; %>&#39; //JS 表达式,
  &#39;<% d.name %>是一位<% type %>猿。&#39;
  ].join(&#39;&#39;)).render({
  name: &#39;贤心&#39;
}, function(string){
  console.log(string); //贤心是一位公猿
});
Copy after login

Conclusion Laytpl is used in many modules of layui, such as: layim, table, etc. Although the traditional front-end template engine has become less popular, laytpl can still play a certain role, so give it a try.

The above is the detailed content of How to use layui template engine. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!