3

我一直在为 koa 应用程序编写身份验证路由器。

我有一个从数据库获取数据然后将其与请求进行比较的模块。我只想yield next在身份验证通过时运行。

问题是与数据库通信的模块返回一个承诺,如果我尝试yield next在该承诺内运行,我会收到错误。要么SyntaxError: Unexpected strict mode reserved wordSyntaxError: Unexpected identifier取决于是否使用严格模式。

这是一个简化的示例:

var authenticate = require('authenticate-signature');

// authRouter is an instance of koa-router
authRouter.get('*', function *(next) {
  var auth = authenticate(this.req);

  auth.then(function() {
    yield next;
  }, function() {
    throw new Error('Authentication failed');
  })
});
4

1 回答 1

5

我想我想通了。

需要产生承诺,这将暂停函数,直到承诺被解决,然后继续。

var authenticate = require('authenticate-signature');

// authRouter is an instance of koa-router
authRouter.get('*', function *(next) {
  var authPassed = false;

  yield authenticate(this.req).then(function() {
    authPassed = true;
  }, function() {
    throw new Error('Authentication failed');
  })

  if (authPassed)  {
   yield next;
  }
});

这似乎有效,但如果我遇到任何问题,我会更新它。

于 2015-12-21T21:40:28.657 回答