Ejs Template engine

Source: Internet
Author: User

Ejs is a JS template engine, the basic idea is to provide data in the background JS, the front end through the <%%> tag parsing out:

For example, we create a Ejs file:

<!doctype html>

Then we have a ejs_test.js file that provides data rendering:

var Ejs = require ("Ejs"); var fs = require ("FS"); Fs.readfile ("./ejs_test.ejs", function (err,data) {    var template  = Data.tostring ();    var dictionary = {a:66,news:["java", "JavaScript", "C"]};    var html = ejs.render (template,dictionary);//Populate template    Console.log (HTML) with dictionary data source;})

Here's what we do after the console output is rendered:

Ejs Template engine

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.