MongoDB
 sql >> Teknologi Basis Data >  >> NoSQL >> MongoDB

Cara membuat array array skema objek di Mongoose.js

Contoh kode untuk membuat Array dari array objek:

const cellSchema = new mongoose.Schema({
    type: String,
    count: Number
});

const matrixSchema = new mongoose.Schema({
    matrix: [[cellSchema]]
});

const Matrix = mongoose.model('Matrix', matrixSchema);

const newMatrix = new Matrix({
    matrix: [
        [{ type: 'xyz', count: 10 }, { type: 'ABC', count: 20 }],
        [{ type: 'pqr', count: 10 }]]
});
newMatrix.save();

Keluaran




  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Upsert Dokumen dan/atau tambahkan Sub-Dokumen

  2. MongoDB menyortir dokumen berdasarkan data bersarang

  3. Desain skema MongoDB untuk pertanyaan dan jawaban pilihan ganda

  4. Peta Kurangi jenis kueri dengan kebutuhan untuk berkorelasi dengan baris sebelumnya

  5. Kamus python:menghapus karakter Anda