Static method trong mongoose

Để thêm các static method vào model chúng ta có 2 cách sau: Thêm một function property vào schema.statics Gọi Schema#static() function Thực nghiệm Run MacOS: ./node_modules/.bin/babel-node ./static.method.js Windows: .\node_modules\.bin\babel-node .\static.method.js Output findByName————————————findByEmail{ _id: 5dd127418afb34090e84cc64,email: ’email2′,password: ‘123’,fullname: ‘name 2’,gender: ‘male’,createdAt: 2019-11-17T10:56:01.791Z,__v: 0 } Kết Static method được dùng khá nhiều trong mongoose, với việc khởi tạo các static method làm …