我正在使用MongoDB + Node.js + Mongoose,Custphones
已嵌入Account
。
当我添加这样的新嵌入文档时,它可以正常工作:
account.custphones.push { phone: '123456' }
account.save (err, res) ->
console.log res
if err
throw err
但是当我搜索时:
account.custphones.find {phone: "123456"}, (err, custphone) ->
它说TypeError: Object [object Object],[object Object],[object Object] has no method 'find'
我想获取嵌入帐户的Custphone。