_id
sẽ có mặt sau khi lưu:
var instance = new TestingModel()
instance.test = 'blah'
instance.save(function(err){
console.log(instance._id) // => 4e7819d26f29f407b0...
})
chỉnh sửa :thực sự là _id
được đặt ở chế độ khởi tạo, vì vậy nó phải ở đó trước khi lưu:
var instance = new TestingModel()
console.log(instance._id) // => 4e7819d26f29f407b0...