0

在 Internet Explorer 9 和 10 中运行 Meteor 应用程序时出现以下 JavaScript 运行时错误(我在 9 之前没有检查过,在 IE11 中没有问题):对象不支持属性或方法“attachSchema”

问题行:Meteor.users.attachSchema(Schemas.User);

对于使用 attachSchema 的任何其他集合,我都没有收到此错误。

4

1 回答 1

0

尝试做:

UsersCollection = Meteor.users;
UsersCollection.attachSchema( Schemas.User );
于 2015-12-18T19:37:18.590 回答