MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

A consulta aninhada do MongoDB retorna apenas o último resultado que ocorre


Para navegar no js assíncrono, fiz algumas emissões de um lado para o outro com o socket.io e funcionou

no lado do servidor
var query = records.find({$or:[{starter:data},{receiver:data}]},{});//check the records table for all persons the logged in user has spoken to
query.sort('-createDate').exec(function (err, docs){
    if(err) throw err;

    for(var i=docs.length-1; i>= 0; i--)
    {

       var starter  = docs[i].starter;
        var receiver = docs[i].receiver;
        var lasttxt = docs[i].lastMessage; 

        if (starter == socket.usernames){
          var target = receiver;
        }else
        {
          var target = starter;
        }

      var userlast = target+" "+lasttxt;
                socket.emit('lastly', userlast);//Emit the username and last message for the client to emit back here
    }
})

No lado do seu cliente, colete os dados emitidos
 socket.on('lastly', function(data){//Recieve the data and send right back
                  socket.emit('lastly2', data);
              });

De volta ao seu lado do servidor, pegue os dados enviados de volta
socket.on('lastly2', function(data){//receive the username and last message to work with

var check = data;
var space = check.indexOf(' ');
var name = check.substr(0, space);
var msg = check.substr(space+1);

usersrec.find({username:name},{}).lean().exec(function (errx, docx){
            if(errx) throw errx;

            docx[0].message = msg;
            socket.emit('usernames', docx);
      });

Sim, provavelmente não é ortodoxo, mas pelo menos faz o trabalho. Estou aberto a melhor sugestão tho