$ addToSet到一个数组,但它给我null
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$ addToSet到一个数组,但它给我null相关的知识,希望对你有一定的参考价值。
所以基本上我有一个愿望清单,我有一堆产品,我想在愿望清单产品数组中使用put请求添加(我使用postman btw)。这是愿望清单架构,是的我知道db中的文件名是“whishlist”....我讨厌错别字
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var ObjectId = mongoose.Schema.Types.ObjectId;
var whishList = new Schema({
title: {type: String, default: "Cool whishlist"},
products:[{type: ObjectId, ref:'Product'}]
});
module.exports = mongoose.model('WhishList', whishList);
这是产品架构
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var product = new Schema({
title: String,
price: Number,
likes: {type: Number, default: 0}
});
module.exports = mongoose.model('Product', product);
现在这是我试图运行的代码
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
var db = mongoose.connect('mongodb://localhost/swag-shop');
var Product = require('./model/product');
var wishList = require('./model/wishlist');
app.put('/wishlist/product/add', function(request, response){
Product.find({_id: request.body.productId}, function(err, product){
if(err) {
response.status(500).send({err: "could not add item to wishlist"});
}else{
wishList.update({_id: request.body.wishlistId},{$addToSet: {products: product._id}}, function(err, wishlist){
if(err){
response.status(500).send({err: "could not add item to wishlist /update/"});
}else{
response.send(wishlist);
}
});
}
});
我真的看不出问题出在哪里我试图删除文件并再次发布但我遇到了同样的问题。提前致谢
答案
问题是,如果查询匹配集合中的任何文档而不是您想要的单个文档,则Product.find()
的结果是一组Mongoose文档。
因此表达式{$addToSet: {products: product._id}}
解析为{$addToSet: {products: undefined}}
,因为product
是一个数组而product._id
是未定义的。举个简单的例子吧
var product = [{ '_id': 1 }];
console.log(product._id) // logs undefined
要解决此问题,您可以访问数组中唯一的元素
wishList.update(
{ '_id': request.body.wishlistId },
{ '$addToSet': { 'products': product[0]._id} },
function(err, wishlist) { ... }
);
或者使用findOne()
方法在查询产品时返回单个文档:
Product.findOne({ '_id': request.body.productId }, function(err, product) {
if(err) {
response.status(500).send({err: "could not add item to wishlist"});
} else {
wishList.update(
{ '_id': request.body.wishlistId },
{ '$addToSet': { 'products': product._id } },
function(err, wishlist) { ... }
);
}
});
findById()
方法在这种情况下也很有用,即
Product.findById(request.body.productId, function(err, product) {
if(err) {
response.status(500).send({err: "could not add item to wishlist"});
} else {
wishList.update(
{ '_id': request.body.wishlistId },
{ '$addToSet': { 'products': product._id } },
function(err, wishlist) { ... }
);
}
});
以上是关于$ addToSet到一个数组,但它给我null的主要内容,如果未能解决你的问题,请参考以下文章
$addToSet 对象到 mongoose 中的数组 [重复]
将 terraform 0.12.6 切换到 0.13.0 给我 provider["registry.terraform.io/-/null"] 是必需的,但它已被删除