从getter方法中继续返回值

时间:2017-12-17 17:49:34

标签: javascript node.js sequelize.js

我无法从getterMethod获取实际值。目前我有以下内容:

realloc

我的问题是,这总是会向视图而不是值返回“ [object Promise] ”。

我想通过'返回'所有的承诺,我最终应该得到价值。在我的EJS模板中,我实际上只是将其称为:

  getterMethods: {
      awayTeamName() {
          return this.getAwayTeam().then(function(awayTeam) {
              return awayTeam.getTeams().then(function(team) {
                  return team.name;
              });
          });
      }
  }

1 个答案:

答案 0 :(得分:0)

我的解决方案是在getterMethods之外实际抽象它,并为它创建一个新的中间件函数。我也在使用异步库来在循环中的许多对象上设置一个新属性,然后再传回视图。