MongoDB
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> MongoDB

Chuỗi Mongoose thành ObjectID

Bạn muốn sử dụng kết xuất mặc định:

import mongoose from 'mongoose';

Sau đó, mongoose.Types.ObjectId sẽ hoạt động:

import mongoose from 'mongoose';
console.log( mongoose.Types.ObjectId('578df3efb618f5141202a196') );

CHỈNH SỬA: đầy đủ ví dụ (được thử nghiệm với [email protected] ):

import mongoose from 'mongoose';

mongoose.connect('mongodb://localhost/test');

const Schema = mongoose.Schema;

var comments = new Schema({
    user_id:  { type: Schema.Types.ObjectId, ref: 'users',required: [true,'No user id found']},
    post: { type: Schema.Types.ObjectId, ref: 'posts',required: [true,'No post id found']}
});

const commentsModel = mongoose.model("comments", comments);

let comment = new commentsModel;
let str = '578df3efb618f5141202a196';
comment.user_id = str;
comment.post = str;
comment.save().then(() => console.log('saved'))
              .catch(e => console.log('Error', e));

Cơ sở dữ liệu cho thấy điều này:

mb:test$ db.comments.find().pretty()
{
    "_id" : ObjectId("578e5cbd5b080fbfb7bed3d0"),
    "post" : ObjectId("578df3efb618f5141202a196"),
    "user_id" : ObjectId("578df3efb618f5141202a196"),
    "__v" : 0
}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Mongo trường A lớn hơn trường B

  2. GUI MongoDB nào tốt nhất? - Cập nhật 2019

  3. Truy vấn tổng hợp MongoDB sử dụng trình điều khiển PHP

  4. Truy vấn mongodb từ golang bằng cách sử dụng _id được lưu trữ trong một mảng

  5. MongoDB GridFs với C #, làm thế nào để lưu trữ các tệp như hình ảnh?