【发布时间】:2016-05-27 18:41:06
【问题描述】:
运行此代码:import { AccountsCommon } from 'meteor/accounts-base' 返回 undefined。我添加了 accounts-base 包,所以我不确定我缺少什么。
【问题讨论】:
运行此代码:import { AccountsCommon } from 'meteor/accounts-base' 返回 undefined。我添加了 accounts-base 包,所以我不确定我缺少什么。
【问题讨论】:
我做的是
import AccountsCommon from "meteor/accounts-base";
AccountsCommon.Accounts.onLogin(function() {
});
我正在使用 Meteor 1.4.1.x。
希望对你有用。
【讨论】:
帐户应该代替 AccountsCommon
import { Accounts } from 'meteor/accounts-base'
【讨论】:
{ Accounts } 并且 AccountsCommon 是未定义的。