Ini adalah salah satu kasus penggunaan utama dari 'remove'
perangkat tengah.
clientSchema.pre('remove', function(next) {
// 'this' is the client being removed. Provide callbacks here if you want
// to be notified of the calls' result.
Sweepstakes.remove({client_id: this._id}).exec();
Submission.remove({client_id: this._id}).exec();
next();
});
Dengan cara ini, saat Anda memanggil client.remove()
middleware ini secara otomatis dipanggil untuk membersihkan dependensi.