我想做一个 if 语句,因为如果不显示照片会给出这样的消息: "no photos -6ren">
gpt4 book ai didi

javascript - 如何在 ejs 中使用 if 语句?

转载 作者:太空狗 更新时间:2023-10-29 14:42:29 27 4
gpt4 key购买 nike

我有一个页面可以生成一个 foreach 并显示一些像这样的照片

<% imgs.forEach(function(img) { %>
<img src="uploads/<%=user.username%>/screenshots/<%= img %>">
<% }); %>

我想做一个 if 语句,因为如果不显示照片会给出这样的消息:

"no photos uploaded"

最佳答案

像这样:

<% if(imgs.length > 0){ %>
<% imgs.forEach(function(img) { %>
<img src="uploads/<%=user.username%>/screenshots/<%= img %>">
<% }); %>
<% } else{ %>
<p>no photos uploaded</p>
<% } %>

Reference

关于javascript - 如何在 ejs 中使用 if 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41202233/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com