如何console.log每个评论和回复?

时间:2017-08-19 15:17:03

标签: javascript arrays if-statement

我正在制作评论系统。人们可以评论。人们可以回复评论。在mysql图片中

The two pictures are the same thing. In my yellow writing. comment[0].. should actually be comments[0].. and all others

如果您想知道。在底部图片中......

reply_id 如果Null表示评论没有回复。

parent_comment_id:与comment_id匹配。这意味着reply_comment                    回复了comment_id的评论抱歉不好解释。

=========我想要什么===========

第一条评论。

我回复了第一条评论。

这是我的第二个回复。

...布拉赫

得到rekt小孩。

我尝试了什么。不工作。我很擅长Javascript。我有 “评论未定义”错误。我的尝试是一个不好的例子,但只是为了让你看看我想做什么

 for(var i = 0; i < comments[0].length; i++) { 
     if(comments[0][i].reply_comment && comments[0][i].comment == comments[0][i+1].comment || comments[0][i].comment != comments[0][i-1].comment ) { 
         console.log(comments[0][i].comment) 
         console.log(comments[0][i].reply_comment)
     } 
     else {
        console.log(comments[0][i].reply_comment)
     } 
}

0 个答案:

没有答案