mongoDb にデータを保存するのに問題があります。
これは私のモデルです:
module.exports = function(app) {
var collection = 'chat_user';
var Schema = app.mongoose.Schema;
var schema = new Schema({
user_id: String,
ws: Object
}, { collection: collection });
this.model = app.db.model(collection, schema);
return this;
};
しかし、私が保存しようとしているとき:
chat.user = new models.chat_user({
user_id: app.locals.session.user._id,
ws: ws
})
console.log(chat.user)
chat.user.save();
console.log は良い結果を返しますが、データベースには何もありません。おそらくオブジェクトが大きすぎますか?
それを削除すると、私のobject_idは私のデータベースに保存されます
ありがとう