Sto cercando di sviluppare una classe sulla parte superiore della mangusta con i miei metodi personalizzati, quindi ho esteso la mangusta con la mia classe ma quando invoco per creare un nuovo metodo di macchina funziona ma è striscia ed errore, qui ti lascio guarda cosa sto cercando di fare.
Ricevo questo avviso
(node:3341) DeprecationWarning: Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html
dopo che lo faccio
driver.createCar({
carName: 'jeep',
availableSeats: 4,
}, callback);
driver è un'istanza della classe Driver
const carSchema = new Schema({
carName: String,
availableSeats: Number,
createdOn: { type: Date, default: Date.now },
});
const driverSchema = new Schema({
email: String,
name: String,
city: String,
phoneNumber: String,
cars: [carSchema],
userId: {
type: Schema.Types.ObjectId,
required: true,
},
createdOn: { type: Date, default: Date.now },
});
const DriverModel = mongoose.model('Driver', driverSchema);
class Driver extends DriverModel {
getCurrentDate() {
return moment().format();
}
create(cb) {
// save driver
this.createdOn = this.getCurrentDate();
this.save(cb);
}
remove(cb) {
super.remove({
_id: this._id,
}, cb);
}
createCar(carData, cb) {
this.cars.push(carData);
this.save(cb);
}
getCars() {
return this.cars;
}
}
qualche idea su cosa sto facendo di sbagliato?
mongoose.Promise = global.Promise
e non dovresti più ricevere quell'avvertimento". github.com/Automattic/mongoose/issues/…