NodeJS Can't Access Variable Inside Callback

戏子无情 提交于 2019-11-28 08:49:27

问题


I believe this is a problem with it being async, but I do not know the solution.

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

My issue is that this.table=table is returning undefined if I try access it outside of the function, and I cannot figure out how to display the table on the page.


回答1:


The problem is the Selling.find is asynchronous and likely isn't complete by the time the this.table = table is executed. Try something like the following.

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

That will guarantee that table isn't used until after the results have been fetched and table has been populated.



来源:https://stackoverflow.com/questions/16471548/nodejs-cant-access-variable-inside-callback

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!