ejs模板引擎

2021-06-22 06:05

阅读:500

YPE html>

标签:template   news   doctype   javascrip   head   ati   width   .com   data   

ejs是一个js的模板引擎,基本的思路就是后台js提供数据,前端通过标签解析出来:

比如我们建立一个ejs文件:

Document
iphone

  然后我们有一个ejs_test.js文件提供数据渲染:

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);//用dictionary数据源填充template
    console.log(html);
})

  这里我们在控制台输出渲染完成后的内容:

技术分享

 

ejs模板引擎

标签:template   news   doctype   javascrip   head   ati   width   .com   data   

原文地址:http://www.cnblogs.com/yk123/p/7171705.html


评论


亲,登录后才可以留言!