1. 程式人生 > >JavaScript使用Nodejs模板引擎EJS

JavaScript使用Nodejs模板引擎EJS

rom load att red request update temp ring res

HTML文件裏加入下面一段代碼(下載地址:http://www.embeddedjs.com/):

<script type="text/javascript" src="ejs_production.js"></script>

Syntax

// load a template file, then render it with data
html = new EJS({url: ‘/template.ejs‘}).render(data)

// update element ‘todo‘ with the result of a  
// template rendered with data from a JSON request
new EJS({url:‘/todo.ejs‘}).update(‘todo‘,‘/todo.json‘)

JavaScript使用Nodejs模板引擎EJS