3

我相信这是异步的问题,但我不知道解决方案。

    PagesController.buy = function() {

  var table="";
  Selling.find({}, function(err, res) {
    for (var i in res) {
      console.log(res[i].addr);
      table = table + "res[i].addr";
    }
  });
  this.table = table;
  console.log(table);
  this.render();
}

我的问题是,this.table=table如果我尝试在函数之外访问它,则会返回未定义,并且我无法弄清楚如何在页面上显示表格。

4

1 回答 1

6

问题是 Selling.find 是异步的,并且在执行 this.table = 表时可能尚未完成。尝试类似以下的操作。

PagesController.buy = function() {
  var that = this;
  Selling.find({}, function(err, res) {
    var table = '';
    for (var i in res) {
      console.log(res[i].addr);
      table = table + res[i].addr;
    }

    that.table = table;
    console.log(table);
    that.render();
  });
}

这将保证在获取结果并填充表格之前不会使用表格。

于 2013-05-10T17:33:48.200 回答