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

Hvordan man reaktivt aggregerer mongodb i meteor

Du har ikke en samling på klientsiden. Du skal også abonnere, før du ringer til denne hjælper.

Prøv dette

import { Template } from 'meteor/templating';
import { ReactiveVar } from 'meteor/reactive-var';
import './main.html';

var clientReport = new Mongo.Collection('clientReport');

Meteor.subscribe("reportTotals");

Template.header.helpers({
    'tasks': function () {
        console.log("tasks helper called : ");     
        console.log(clientReport.find().fetch());
    },   
});

Du behøver heller ikke pipeline og ingen autorun på serverkode, prøv dette:

AtmData = new Mongo.Collection('atmdata');

Meteor.startup(() => {
  // code to run on server at startup
/*     AtmData.insert({
        bottles_used: 123,
    }); */

});



Meteor.publish("reportTotals", function() {
// Remember, ReactiveAggregate doesn't return anything

    ReactiveAggregate(this, AtmData, [{
        // assuming our Reports collection have the fields: hours, books    
        $group: {
            '_id': null,
            'bottles_used': {
            // In this case, we're running summation. 
                $sum: '$bottles_used'
                // $sum: 1
            }
        }
        }], { clientCollection: "clientReport" });    
});


  1. Mongodb gruppe og skub med tomme arrays

  2. Multi-Tenancy i Reactive Spring boot-applikation ved hjælp af mongodb-reactive

  3. Hvordan læser man data ind i Tensorflow?

  4. MongoDB skema ydeevne optimering