在UI中更新数据库更改之前,为什么在meteor Tracker.autorun期间有5-10秒的延迟?

时间:2016-02-27 01:13:15

标签: meteor d3.js

我在meteor UI中更新d3.js图表​​以响应MongoDB更新。 出于某种原因,我在手动更改之前需要5到10秒的时间才会反映在图表中。

以下是代码,也许有人会发现延迟的原因:

    Template.diagram.rendered = function(){

var margin = {top: 20, right: 20, bottom: 30, left: 40},
          width = 960 - margin.left - margin.right,
          height = 500 - margin.top - margin.bottom;
      x = d3.scale.ordinal()
        .domain('ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''))
        .rangeRoundBands([0, width], .1);

      y = d3.scale.linear()
        .domain([0,0.15])
        .range([height, 0]);
      var xAxis = d3.svg.axis()
      .scale(x)
      .orient("bottom");
      var yAxis = d3.svg.axis()
      .scale(y)
      .orient("left")
      .ticks(10, "%");

      var svg = d3.select("body").append("svg")
      .attr("width", width + margin.left + margin.right)
      .attr("height", height + margin.top + margin.bottom)
      .append("g")
      .attr("transform", "translate(" + margin.left + "," +
            margin.top + ")");
      svg.append("g")
        .attr("class", "x axis")
        .attr("transform", "translate(0," + height + ")")
        .call(xAxis);
      svg.append("g")
        .attr("class", "y axis")
        .call(yAxis)
        .append("text")
        .attr("transform", "rotate(-90)")
        .attr("y", 6)
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .text("Frequency");

      this.autorun(function(){
          var data = Letters.find().fetch();
        if (!data.length){
            return;
        }
        var bars = svg
        .selectAll(".bar")
        .data(data, function(d){return d._id;});
        bars.enter()
          .append("rect")
          .attr("class", "bar")
          .attr("x", function(d) { return x(d.letter); })
          .attr("width", x.rangeBand())
          .attr("height",0)
          .attr("y", height)
          .transition()
          .attr("y", function(d) { return y(d.frequency); })
          .attr("height", function(d) { return height -
          y(d.frequency); });
        bars
          .transition()
          .duration(200)
          .ease("sin-out")
          .attr("y", function(d) { return y(d.frequency); })
          .attr("height", function(d) { return height -
          y(d.frequency); });
      });
    };

1 个答案:

答案 0 :(得分:0)

一旦我在流星论坛上发布了这个问题,我就被指向了2014年的一个流星博客帖子,其中描述了oplog尾部功能,以及它在dev实例中默认启用的事实。这让我意识到,通过在我的开发应用程序中使用MONGO_URL env变量,我强迫我的meteor应用程序使用MongoDB实例,它一直在我的mac上运行,独立于我的流星开发,并且因此,被认为是"生产"通过我的流星应用程序。一旦我将应用程序切换到使用ad-hock mongo connection / db,oplog尾部就会生效,我开始看到即时事件传播到浏览器。谢谢,来自流星论坛的@dburles!