我相信这是与它是异步的问题,但我不知道解决的办法。
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
中返回undefined如果我试图函数的外部访问它,我无法弄清楚如何在页面上显示的表。