在if语句和循环中跳过未定义的值

时间:2017-12-14 01:18:35

标签: javascript ejs embedded-javascript

我试图遍历所有用户的评论,但使用if语句查找某个值。问题是我的应用程序中断,因为一些用户没有发表评论,因此我得到了一个“无法读取”的“收集”属性。未定义。如何跳过if语句的未定义值?代码如下:

<% for(var i=0; i < users.length; i++) { %>
   <tr>


    <% if(users[i].comments.slice(-1)[0].collected !== 'At Reception') { %>

     <td>Nothing in reception - well done!</td>

    <%  } else { %>



     <td><%= users[i].studio %></td>
     <td><%= users[i].name %></td>
     <td><%= users[i].email %></td>
     <td><%= users[i].username %></td>
     <td><%= users[i].comments.slice(-1)[0].collected %></td>

     <td><a class="btn btn-primary" href="/users/<%= users[i]._id %>">More Info</a></td>

    <% } %>

3 个答案:

答案 0 :(得分:1)

只需添加一项检查以查看该对象是否存在,以及评论长度是否为&gt; 0:

<% for(var i=0; i < users.length; i++) { %>
   <tr>

    <% if(!users[i].comments || users[i].comments.length == 0) {
          continue;
    } else if(users[i].comments && users[i].comments.length > 0 && users[i].comments.slice(-1)[0].collected !== 'At Reception') { %>

     <td>Nothing in reception - well done!</td>

    <%  } else { %>
  <% console.log('nothing in reception') %>

 <td><%= users[i].studio %></td>
 <td><%= users[i].name %></td>
 <td><%= users[i].email %></td>
 <td><%= users[i].username %></td>
 <td><%= users[i].comments.slice(-1)[0].collected %></td>

 <td><a class="btn btn-primary" href="/users/<%= users[i]._id %>">More Info</a></td>

<% } %>

答案 1 :(得分:0)

你试过continue;吗?我知道你可以把它放在一个块里面。如果它不符合您的条件标准,它将跳过并迭代到下一个评论/列表。

答案 2 :(得分:0)

首先使用以下代码行检查该对象是否可用:

yourObject.hasOwnProperty('collected') // it will return true if exist, false if not.

if(yourObject.hasOwnProperty('collected')) {
  // code here...
} else {
  // catch here...
}

尝试阅读有关Object.prototype.hasOwnProperty()

的更多信息