【发布时间】:2017-04-26 09:57:59
【问题描述】:
MongoError:无法识别的管道阶段名称:'$addFields'。 “猫鼬”:“^4.5.8” 我的源代码:
Post.aggregate(
[{
$addFields: {
userName: { $concat: [ "$author.firstName", " ", "$author.lastName" ] }
}
//$project: { userName: { $concat: [ "$author.firstName", " ", "$author.lastName" ] } } //this is ok!
}],
function (err, result) {
if (err) {
console.log(err);
return;
}
console.log(result);
}
)
后模型:
let schema = {
id: "post",
properties: {
content: {type: "string"},
author: {
type: "object",
id: {type: "string"},
avatar: {type: "string"},
firstName: {type: "string"},
lastName: {type: "string"},
status: {type: "string"}
},
category: {
type: "object",
id: {type: "string"},
name: {type: "string"}
},
images: {
type: "array",
items: {
type: "object",
properties: {
filePath: {type: "string"},
}
}
},
video: {
type: "object",
thumbnail: {type: "string"},
filePath: {type: "string"}
},
likes: {
type: "array",
items: {
type: "object",
properties: {
userId: {type: "string"},
status: {type: "string"},
_id : {type: "string", default: null}
}
}
},
shares: {
type: "array",
items: {
type: "object",
properties: {
userId: {type: "string"},
status: {type: "string"},
destination: {type: "string"}, //FACEBOOK|TWISTER|GOOGLE
_id : {type: "string", default: null}
}
}
},
favorites: {
type: "array",
items: {
type: "object",
properties: {
userId: {type: "string"},
status: {type: "string"},
_id : {type: "string", default: null}
}
}
},
comments: {
type: "array",
items: {
type: "object",
properties: {
commentId: {type: "string"},
_deleted: {type: "Date", default: ''},
_id : {type: "string", default: null}
}
}
},
_created: {type: "Date", default: Date.now},
_deleted: {type: "Date", default: ''},
_updated: {type: "Date", default: ''}
}
【问题讨论】:
-
mongodb 上的版本是什么?
$addFields在 3.4 中引入 -
mongodb的版本是^4.5.8
-
在 packge.json 中:“mongoose”:“^4.5.8”,“mongoose-json-select”:“^0.2.1”,“mongoose-unique-validator”:“^1.0 .2",
-
使用这个问题stackoverflow.com/questions/15311305/…987654321@中的答案检查版本
-
我查了一下,mongodb的版本是3.2.9。谢谢!
标签: mongodb aggregation-framework