Meteor.userId 只能在方法调用中调用。 (流星铁路由器)

Meteor.userId can only be invoked in method calls. (Meteor IronRouter)

我正在为我的应用程序使用 IronRouter。最近想打个电话:

Router.route('/api/hello', { where: 'server' })
  .get(function () {
    this.response.end('Helo world');
});

我得到了这个例外:

Error: Meteor.userId can only be invoked in method calls. Use this.userId in publish functions. at AccountsServer.userId (accounts_server.js:80:13) at AccountsServer.user (accounts_common.js:53:23) at Object.Meteor.user (accounts_common.js:230:19) at [object Object]. (lib/routes_permission.js:33:21) at packages/iron_router/lib/router.js:277:1 at [object Object]._.extend.withValue (packages/meteor/dynamics_nodejs.js:56:1) at [object Object].hookWithOptions (packages/iron_router/lib/router.js:276:1) at boundNext (packages/iron_middleware-stack/lib/middleware_stack.js:251:1) at runWithEnvironment (packages/meteor/dynamics_nodejs.js:110:1) at packages/meteor/dynamics_nodejs.js:123:1

我在“(lib/routes_permission.js:33:21)”中跟踪了这个问题,似乎一切都很好。

// user with no role
Router.onBeforeAction(function() {
  var user = Meteor.user(); //This is the line.
  if(user && !user.roles) {
    this.render('roles');
    return;
  }
  this.next();
});

我不知道为什么会出现此异常。不过,我的出版物中没有任何 Meteor.userId()。

有什么见解吗?

服务器端路由像 REST 端点一样访问,因此它们没有身份验证的概念(Meteor.userMeteor.userId 会抛出错误)。因为您的 routes_permission.js 文件是在共享目录中定义的,所以它的规则也会被服务器路由选择。关于如何解决这个问题,您有一些选择,但最简单的可能只是用 Meteor.isClient 包装您的 onBeforeAction,如下所示:

if (Meteor.isClient) {
  Router.onBeforeAction(...);
}