如何等待 Meteor.user() 并在容器内未定义时重定向?

How to wait for Meteor.user() and redirect if undefined from within the container?

我想通过将未登录用户重定向到登录页面来限制未登录用户查看我的应用程序中的某些页面。我使用 React、Flow Router 和 React Komposer。问题是,Meteor.user() 首先给出 undefined 并且即使用户已登录,他也会被重定向到登录页面。我该如何解决这个问题?

你需要的方法是Meteor.loggingIn()

在重定向用户之前,您需要检查用户是否正在登录,例如:

if(!Meteor.loggingIn() && !Meteor.userId()){
   //do redirect to login page
}