sql >> Database >  >> NoSQL >> MongoDB

Mongoose-prototype:hoe een url dynamisch invoegen?

Hier is een voorbeeld met een instantiemethode :

var mongoose = require('mongoose');
var Schema   = mongoose.Schema;

var PicturesSchema = new Schema({
  album    : { type : String, required : true,  trim : true },
  pictures : { type : Array,  required : false, trim : true }
});

// Make sure this is declared before declaring the model itself.
PicturesSchema.methods.getPics = function() {
  // `this` is the document; because `this.pictures` is an array,
  // we use Array.prototype.map() to map each picture to an URL.
  return this.pictures.map(function(picture) {
    return 'https://s3.amazonaws.com/xxxxx/'+ picture;
  });
};

var Pictures = mongoose.model('Pictures', PicturesSchema);

// Demo:
var pictures = new Pictures({
  album    : 'album1',
  pictures : [
    '1434536659272.jpg',
    '1434536656464.jpg',
    '1434535467767.jpg'
  ]
});

console.log( pictures.getPics() );

Als u wilt dat de URL's deel uitmaken van het documentobject (bijvoorbeeld om te gebruiken als JSON-antwoord), gebruik dan een "virtual" in plaats daarvan:

...
PicturesSchema.virtual('pictureUrls').get(function() {
  return this.pictures.map(function(picture) {
    return 'https://s3.amazonaws.com/xxxxx/'+ picture;
  });
});
...

// Demo:
console.log('%j', pictures.toJSON({ virtuals : true }) );



  1. Hoe de foutopsporing OOM-opdracht niet toegestaan ​​​​bij gebruik van geheugen> 'maxmemory' in Redis?

  2. Converteer MongoDB BsonDocument naar geldige JSON in C#

  3. MongoDB Compass Filter expressie naar Go bson.M expressie

  4. Waarom zou deze db.eval -> array.push twee keer worden uitgevoerd voor bepaalde records?