1. 程式人生 > >nodejs 模板引擎ejs的簡單使用(3)

nodejs 模板引擎ejs的簡單使用(3)

技術 head http html bsp alt {} 輸出 body

1.ejs

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    <% for(var i=0;i<2;i++){ %>
    <% include ../a.txt %>
    <% } %>
  </body>
</html>

ejs.js

var ejs=require(ejs);

ejs.renderFile(
./views/1.ejs, {}, function (err, data){ console.log(data); });

輸出效果:

技術分享

a.txt

努力吧
不管別人怎麽看待你,
你都要堅持做自己



nodejs 模板引擎ejs的簡單使用(3)