if语句在比较Mongoose Object Ids时在Jade中不起作用

时间:2015-09-09 01:38:01

标签: templates express mongoose pug

所以我有一个故事对象,我试图将它与一系列故事进行比较,以查看故事对象是否在数组中。然而,它不起作用,我无法弄清楚原因。

//news.jade

each post in favPosts
    div=post._id
    div=object._id
    if (post._id === object._id)
        span same
    else
        span no

// the output (those are ObjectID from mongoose)

55e3e6dcd22670d8032a4ddf
55ef8999a89ed2fc72d8159f
no

55e3e6bbd22670d8032a4dde
55ef8999a89ed2fc72d8159f
no

55ef8999a89ed2fc72d8159f
55ef8999a89ed2fc72d8159f
no <=== this should be same

55ef8028283872046809c0f2
55ef8999a89ed2fc72d8159f
no

0 个答案:

没有答案