Meteor.js on login event

后端 未结 2 1205
梦毁少年i
梦毁少年i 2021-02-04 03:42

So I\'m rather new to the meteor framework and JavaScript in general, but I\'m working on a little project using the framework to try and bring myself up to scratch. Basically I

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-04 04:17

    I don't know if the way you're doing it is the most appropriate but personally do the following on the client side to detect if a user logged in:

    Tracker.autorun(function(){
      if(Meteor.userId()){
        //do your stuff
      }
    });
    

提交回复
热议问题