sql >> Databáze >  >> NoSQL >> MongoDB

Jak reaktivně agregovat mongodb v meteoru

Nemáte sbírku na straně klienta. Před zavoláním tohoto pomocníka se také musíte přihlásit k odběru.

Zkuste toto

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());
    },   
});

Také nepotřebujete kanál a žádné automatické spouštění na serveru, zkuste toto:

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. Hadoop RecordReader Úvod, práce a typy

  2. mongodb db.collection.find({}) nedělá nic za .limit(101)

  3. Redis with Resque a Rails:Příkaz ERR není povolen při použití paměti> 'maxmemory'

  4. MongoError:Topologie je uzavřena, připojení se zdá být spojeno s MongoClient.close() a klient při jejím používání nebude fungovat