如何在流星中反应性地聚合mongodb

时间:2016-09-29 17:19:58

标签: javascript mongodb meteor

我是流星的新手。我已经建立了发布/订阅概念。我在执行聚合反应时遇到以下错误。

客户端代码:

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

Template.header.helpers({
    'tasks': function () {
        console.log("tasks helper called : ");     

        Meteor.subscribe('reportTotals', function() {
            console.log(clientReport.find().fetch());
        });

        return ['1', '2'];
    },   
});

服务器代码

import { Meteor } from 'meteor/meteor';
import {ReactiveAggregate} from 'meteor/jcbernack:reactive-aggregate';

Meteor.startup(() => {
    console.log("Server Started");
  // code to run on server at startup
  var MONGO_URL = "mongodb://127.0.0.1:27017/test";  
});

Meteor.publish("reportTotals", function() {
// Remember, ReactiveAggregate doesn't return anything
this.autorun(function () {
ReactiveAggregate(this, atm_data, [{
    // assuming our Reports collection have the fields: hours, books    
    $group: {
        '_id': null,
        'bottles_used': {
        // In this case, we're running summation. 
            $sum: '$BOTTLE_USED'
            // $sum: 1
        }
    }
}, {
    $project: {
        // an id can be added here, but when omitted, 
        // it is created automatically on the fly for you
        bottles_used: '$bottles_used'
    } // Send the aggregation to the 'clientReport' collection available for client use
}], { clientCollection: "clientReport" });    
    });
});   

刷新DDP缓冲写入时出现异常:错误:预计要查找要更改的文档     在Object.update(http://localhost:3000/packages/mongo.js?hash=ed0b13aca2f180af120dd0cfdba64ac79e2a624f:246:29) ... 提前谢谢。

2 个答案:

答案 0 :(得分:3)

您没有客户端集合。此外,您需要在调用此帮助程序之前进行订阅。

试试这个

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

您也不需要管道,也不需要自动运行服务器代码,试试这个:

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 :(得分:0)

我在这里制作了一个NPM包:meteor-publish-join。其主要目的是在一定时间后发布昂贵的聚合值。希望它对你的情况有所帮助。