admin管理员组文章数量:1345733
I have an array like so for example:
const arr = ['foo', 'bar', 'baz'];
arr
could have any length, I'm just using this as an example. How would I go about dynamically adding the arr
into a list on ejs.
I'm aware I could do this
// index.ejs
<!doctype html>
<html>
<body>
<ul>
<li><%= item %></li>
</ul>
</body>
</html>
// app.js
res.render('index', {
item: arr[0]
})
Which will render only the first item in the array. How would I make it so it ends up like this:
<html>
<body>
<ul>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ul>
</body>
</html>
I have an array like so for example:
const arr = ['foo', 'bar', 'baz'];
arr
could have any length, I'm just using this as an example. How would I go about dynamically adding the arr
into a list on ejs.
I'm aware I could do this
// index.ejs
<!doctype html>
<html>
<body>
<ul>
<li><%= item %></li>
</ul>
</body>
</html>
// app.js
res.render('index', {
item: arr[0]
})
Which will render only the first item in the array. How would I make it so it ends up like this:
<html>
<body>
<ul>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ul>
</body>
</html>
Share
Improve this question
asked Jul 15, 2018 at 13:22
newbienewbie
1,5711 gold badge13 silver badges21 bronze badges
3 Answers
Reset to default 5You can use array's forEach
method in ejs the same way you can use it in JavaScript so
<ul>
<% arr.forEach((item) => { %>
<li><%= item %></li>
<% }) %>
</ul>
will solve your problem.
You should probably add test to check whether the arr
actually exists so that it won't try to iterate through it if there is no array (array is undefined
) or its length is zero.
It may happen that you, at some point, send undefined
value for array to view.
res.render('index', { arr: undefined });
In such case, if you don't perform that check, your view will crash because there is no forEach
method of undefined
.
<% if (arr && arr.length) { %>
<ul>
<% arr.forEach((item) => { %>
<li><%= item %></li>
<% }) %>
</ul>
<% } %>
And you need to pass the whole array to the view for the above code to work.
res.render(index, { arr });
Pass the array to the view
// app.js
res.render('index', {
arr
})
Loop through it
<ul>
<% for(var i=0; i<arr.length; i++) {%>
<li><%= arr[i] %></li>
<% } %>
</ul>
Another way is to map.
//app
res.render('index',{ arr })
map
<html>
<body>
<ul>
<%arr.map( item => {%>
<li><%= item%></li>
<%})%>
</ul>
</body>
</html>
本文标签: javascriptNodejsDynamic list using ejsStack Overflow
版权声明:本文标题:javascript - Node.js - Dynamic list using ejs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808429a2542610.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论