What is javascript template engine
JavaScript template engine is a method of separating the html structure from the content contained in it. It is produced to separate the user interface from business data. It can generate a standard html document; the template engine is to make dynamic Something that can be used to simplify string splicing operations when rendering the page.
The operating environment of this tutorial: Windows 10 system, JavaScript version 1.8.5, Dell G3 computer.
What is a javascript template engine
The template engine (here specifically refers to the template engine used for Web development) is produced to separate the user interface from business data (content). It can generate For a document in a specific format, the template engine used for the website will generate a standard HTML document.
The template engine is designed to simplify string splicing operations when rendering dynamic pages.
JavaScript templates are a way to separate the structure of HTML from the content contained within it. Template systems often introduce some new syntax, but are usually very simple to use, especially if we have used a template system elsewhere before (such as Twig in PHP). An interesting thing to note is that token substitution is typically represented by double braces ( {{ ... }} ), from which Mustache and Handlebars are derived (tip: turn it sideways to see the similarity).
For example, we need to render a list on the page:
<li>111</li> <li>222</li> <li>333</li>
The data in the list is an array obtained dynamically data=['111','222','333']. Then we write it directly in code, we need to loop the data, and then splice the data of each li. Students who are used to writing pages want to write the code logic directly in an html. As long as the data source is changed, different page codes can be output. For example, we can write like this:
for(var i = 0; i < this.list.length; i++){ <li>this.list[i]</li> }
When the data of this.list is replaced, different results can be obtained. But with such code, it is impossible to distinguish where is the logic code and where is the HTML code itself. So we added some tags, here we use <% %> to wrap the logic code.
<%for(var i = 0; i < this.list.length; i++){%> <li><%=this.list[i]%></li> <%}%>
We can add this code to the script tag, change the type to text/html or other formats, and obtain the text content through the dom when needed. If js can understand this code, it can update the template content by changing the data source. We can capture all logical codes through regular matching and then analyze them. Here I took a trick and used js to use new Function to execute the code. I added the parts other than the logic code into a string. After execution, the final string result was output: var etj = function (str, data) {
var reg = /^<%.*?%>/, reg2 = /^(.*?)<%/, str2 = 'var str = "";', str = str.replace(/[\r\t\n]/g, " "); while (str.length) { if (match = reg.exec(str)) { if (/^<%=/.exec(str)) { str = str.replace(match[0], ''); str2 += ('str +' + match[0].replace(/<%|%>/g, '')); str2 += ';'; } else { str = str.replace(match[0], ''); str2 += match[0].replace(/<%|%>/g, ''); str2 += ';'; } } else { match = reg2.exec(str)[1]; str = str.replace(match[0], ''); str2 += 'str +="'; str2 += match[0]; str2 += '";'; } } str2 += 'return str;' var f = new Function(str2); return f.call(data);
} This is a toy engine written by myself, and it still has bugs. Let’s do a demo first (the logic is simple after all). Here we use simple regular rules to turn the template into a piece of pure js code. After importing the data source, the execution result is the html code we want. We only need to execute:
etj(str, {'list': [1, 2, 3]});
. In this way, the logic of html does not need to be embedded in the js code.
【Related recommendations: javascript video tutorial, web front-end】
The above is the detailed content of What is javascript template engine. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript is a programming language widely used in web development, while WebSocket is a network protocol used for real-time communication. Combining the powerful functions of the two, we can create an efficient real-time image processing system. This article will introduce how to implement this system using JavaScript and WebSocket, and provide specific code examples. First, we need to clarify the requirements and goals of the real-time image processing system. Suppose we have a camera device that can collect real-time image data
