sql >> Database teknologi >  >> NoSQL >> MongoDB

Lagring af genstande i Mongoose For Loop med skemametoder

Når du skal udføre den samme asynkrone opgave for elementer i et array, skal du ikke bruge en almindelig for-løkke. Tjek async.each , passer det bedre i dit scenarie, som (kun else del af din kode):

var body = JSON.parse(response.body);

async.each(body.data, function (photoData, callback) {

  // ------------------------------------------------
  // If there is no caption, skip it
  //

  if (!photoData.caption){
    text = '';
  }
  else{
    text = photoData.caption;
  }

  // ------------------------------------------------
  // Create new photo object
  //

  var photo = new Photo({
    link: photoData.link,
    username: photoData.user.username,
    profilePicture: photoData.user.profile_picture,
    imageThumbnail: photoData.images.thumbnail.url,
    imageFullsize: photoData.images.standard_resolution.url,
    caption: text,
    userId: photoData.user.id,
    date: photoData.created_time,
    _id: photoData.id
  });

  photo.checkBlacklist(function(err, blacklist){

    if (!blacklist){
      photo.save(function(err, item){
        if (err){
          console.log(err);
        }

        console.log('Saved', item);
        callback();
      });
    }

  });

}, function (error) {
  if (error) res.json(500, {error: error});

  console.log('Photos saved');
  return res.json(201, {msg: 'Photos updated'} );
});

Glem ikke at installere

npm install async

og kræver async :

var async = require('async');


  1. mongoDB-forespørgsel WHERE _id> tærskel

  2. Forbinder Django +1.10 med MongoDB

  3. Hvordan listes alle databaser i mongo-skallen?

  4. MongoDB og Mongoid i produktion