猫鼬模式数组中的更新元素

时间:2019-02-05 02:42:20

标签: node.js mongodb mongoose

我正在尝试更新猫鼬模式中snippets的一个元素。

我的猫鼬模式。

const Schema = new mongoose.Schema({
  // ...
  createdAt: Date,
  snippets: {} // here I push ['string..', ['array of strings..']]
})    

这是指南针中snippets的视图。

enter image description here

下面的代码存在的问题是它会完全擦除存储的其他元素,而不是起作用的。无法指定我要更新片段[0],而不是整个内容。.

User.findOneAndUpdate({ username: req.session.user.username },
  { $set: { snippets: [snippet] } }, callback)

尝试使用findOnesave,但不会更新数据库。

const snippet = [req.body.code, [req.body.tags]]
User.findOne({ username: req.session.user.username }, function (err, fetchedUser) {
  if (err) console.log(err)
  fetchedUser.snippets[req.params.id] = snippet // should be set to new snippet?
  fetchedUser.save(function (err, updatedUser) {
    if (err) console.log(err)
    console.log('edited')
    // ...
  })
})

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我以为我已经尝试过了,但是显然没有。

使用fetchedUser.markModified('snippets')解决了我的问题,其中findOne / save实际上没有保存到数据库。