“Collection.SureIndex sudah usang” Kode Jawaban

Collection.SureIndex sudah usang

mongoose.connect(dbURI, {
    useNewUrlParser: true,
    useUnifiedTopology: true,
    useCreateIndex: true,
    useFindAndModify: true,
})
raadu

(Node: 3168) Deprecation -warning: collection.sureindex sudah usang. Gunakan createIndex sebagai sebagai gantinya. (Gunakan `node --trace-depresi ...` untuk menunjukkan di mana peringatan itu dibuat)

mongoose.set('useCreateIndex', true);
Ghaith Alzin

(Node: 2496) Deprecation -warning: collection.sureindex sudah usang. Gunakan createIndex sebagai sebagai gantinya.

/*As of this edit, Mongoose is now at v5.4.13. Per their docs, these are the fixes for the deprecation warnings..*/
mongoose.set('useNewUrlParser', true);
mongoose.set('useFindAndModify', false);
mongoose.set('useCreateIndex', true);
Sparkling Shrike

(Node: 2496) Deprecation -warning: collection.sureindex sudah usang. Gunakan createIndex sebagai sebagai gantinya.

mongoose.set('useNewUrlParser', true);
mongoose.set('useFindAndModify', false);
mongoose.set('useCreateIndex', true);
Sparkling Shrike

(Node: 2736) Deprecation -warning: collection.sureindex sudah usang. Gunakan createIndex sebagai sebagai gantinya.

mongoose.connect(
  url,
  {useCreateIndex: true },
  () => {
    console.log("MongoDB is connected!");
  }
);
Mohamed Awde

Jawaban yang mirip dengan “Collection.SureIndex sudah usang”

Pertanyaan yang mirip dengan “Collection.SureIndex sudah usang”

Lebih banyak jawaban terkait untuk “Collection.SureIndex sudah usang” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya