问题描述
根据这篇帖子https://segmentfault.com/a/1190000002727265弄的demo,提示这条语句js var userIds = [new ObjectId, new ObjectId, new ObjectId];
的 new ObjectId
是undefined,然后我删掉了跟new ObjectId相关字段的数据填充,然后代码如下:
const http = require('http');
const mongoose = require('mongoose');
var Schema = mongoose.Schema;
var ObjectId = Schema.Types.ObjectId;
//const _ObjectId = mongoose.Types.ObjectId;
// ==================User Schema=====================
var UserSchema = new Schema({
name : { type: String, unique: true },
posts : [{ type: ObjectId, ref: 'Post' }] // 要关联填充Post表的字段
});
var User = mongoose.model('User', UserSchema);
// ==================Post Schema=====================
var PostSchema = new Schema({
poster : { type: ObjectId, ref: 'User' }, // 要关联填充数据的字段
comments : [{ type: ObjectId, ref: 'Comment' }], // 要关联填充数据的字段据
title : String,
content : String
});
var Post = mongoose.model('Post', PostSchema);
// ==================Comment Schema=====================
var CommentSchema = new Schema({
post : { type: ObjectId, ref: 'Post' }, // 要关联填充数据的字段据
commenter : { type: ObjectId, ref: 'User' }, // 要关联填充数据的字段据
content : String
});
var Comment = mongoose.model('Comment', CommentSchema);
var db = mongoose.connect('mongodb://localhost/alan');
db.connection.on("error", (error) => {
console.log("数据库连接失败:" + error);
});
db.connection.on("open", () => {
console.log("——数据库连接成功!——");
// createData();
});
//创建数据并插入
function createData() {
var users ;
var posts ;
var comments ;
users = {
name : 'aikin',
// posts : [new ObjectId] // 因为ObjectId是未定义报错所以注释了
};
posts = {
title : 'post-by-luajin',
// poster : new ObjectId, // 因为ObjectId是未定义报错所以注释了
// comments : [new ObjectId] // 因为ObjectId是未定义报错所以注释了
};
comments = {
content : 'comment-by-aikin',
// commenter : new ObjectId,
// post : new ObjectId
};
var _user = new User(users);
var _post = new Post(posts);
var _comment = new Comment(comments);
_user.save((err, user) => {
if (err) console.log(err);
console.log(user);
});
_post.save((err, post) => {
if (err) console.log(err);
console.log(post);
});
_comment.save((err, comment) => {
if (err) console.log(err);
console.log(comment);
});
}
http.createServer((req, res) => {
res.writeHead(200,{"Content-Type": "text/plain"});
/*CN.findOne({name: 'Alan'}, (err, data) => {
console.log(data);
});*/
User.find()
.populate('posts', 'title')
.exec(function(err, docs) {
console.log(docs); // 这里打印
res.write("hello");
res.end();
});
}).listen(4000,() => {
console.log("Server run at port", 4000);
});
在访问服务器时候执行createServer
里面的代码,populate('posts', 'title')
将Post
集合的title
字段填充关联到User
集合里的posts
字段。但是打印效果是:
[ { name: 'aikin', _id: 595639aa9a73292826000001, posts: [] } ]
[ { name: 'aikin', _id: 595639aa9a73292826000001, posts: [] } ]
posts里数据为空是这么回事呢?
数据库里的数据
数据库里分别创建了User、Post、Comment
三个表(集合),里面插入的数据如下:
User表的数据:
/* 0 */
{
"name" : "aikin",
"_id" : ObjectId("595639aa9a73292826000001"),
"posts" : []
}
Post表的数据:
/* 0 */
{
"title" : "post-by-luajin",
"_id" : ObjectId("595639aa9a73292826000002"),
"comments" : []
}
Comment表的数据:
/* 0 */
{
"content" : "comment-by-aikin",
"_id" : ObjectId("595639aa9a73292826000003")
}
为什么Post表少了poster
,Comment表少了post
字段呢?
使用population也填充不成功这么回事?刚接触mongdb有点蒙。
补充
补充一下,由于我的系统是win7 32位但目前的mongodb都不支持32位的,所以我装了个2012年的mongodb 2.0.4版本,和同时间段的mongoose 2.6.0版本
附数据库结构情况:
User.find().populate('posts', 'title')
这个写法肯定是错的,populate
如果是string
的话应该以空格分开吧(建议以object
的方式多个分开写,不要把所有数据都populate
出来),而且用
populate
要你定义的表里的字段做了关联,你的title
都不知道关联的什么,User表里根本没有这个字段