运行此代码:import { AccountsCommon } from 'meteor/accounts-base'
返回undefined。我添加了基于帐户的包,所以我不确定我缺少什么。
答案 0 :(得分:1)
我的工作是
import AccountsCommon from "meteor/accounts-base";
AccountsCommon.Accounts.onLogin(function() {
});
我正在使用Meteor 1.4.1.x。
希望对你有用。
答案 1 :(得分:0)
帐户应该取代AccountsCommon
import { Accounts } from 'meteor/accounts-base'