跳到主要内容
版本:3.x.x

语法速记表

条件语句

<% if (it.someval === "someothervalue") { %>
Display this!
<% } else { %>
They're not equal
<% } %>

遍历数组

<% users.forEach(function(user){ %>
<%= user.first %> <%= user.last %>
<% }) %>

遍历对象

<% Object.keys(someObject).forEach(function(prop) { %>
<%= someObject[prop] %>
<% }) %>

控制台输出日志

<% console.log("The value of it.num is: " + it.num) %>

异步部件模板

<%~ await includeAsync("./path-to-partial") %>