ejs循环实例

时间:2015-11-06 12:46:45   收藏:0   阅读:10647
...

//
index page var items=[{title:"文章1"},{title:"文章2"}]; app.get(‘/‘,function(req,res){ res.render(‘index‘,{title:‘电影首页‘,items:items}); });

...

对应ejs

<html>
<head>
<title>my ejs template</title>
</head>

<body>
    <p>Hi <%= title %></p>
    <p>文章列表</p>
    <ul>
        <% items.forEach(function(item){%>
                <li><%=item.title %></li>
            <% }) %>
    </ul>
</body>
</html>

预览图

技术分享

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!