meteor-collection2模式崩溃Accounts.createUser()

时间:2015-08-06 11:00:20

标签: node.js mongodb meteor meteor-collection2

我试图使用meteor-collection2来验证我的收藏。

我在服务器端有一项服务:

Meteor.methods
  UserSignUpService: (options) ->
    # create user
    Accounts.createUser options

我打电话给客户端:

Meteor.call 'UserSignUpService',
  email: 'my.email@domain.com'
  password: 'mypassword'
  profile:
    name: 'me'

这是我的架构:

# user profile
UserProfile = new SimpleSchema
  name:
    type: String
    min: 1
    max: 50
    optional: false

# user
User = new SimpleSchema
  emails:
    type: [Object]
    optional: false
  "emails.$.address":
    type: String
    regEx: SimpleSchema.RegEx.Email
  "emails.$.verified"
    type: Boolean
  createdAt:
    type: Date
  profile:
    type: UserProfile
    optional: false
  services:
    type: Object
    optional: true
    blackbox: true

# links to user collection
Meteor.users.attachSchema User

但是,在创建用户时,我的mongo集合中并不存在所有字段:

{ "_id" : "ikvBq95JBLXMCSnhT", "emails" : [ { "address" : "my.email@domain.com" } ] }

它应该是:

{ "_id" : "WNkjGFhNkLpRR2Jex", "createdAt" : ISODate("2015-08-06T09:00:59.887Z"), "services" : { "password" : { "bcrypt" : "$2a$10$QvMLuI.Pv0bzzii3ZZP...fHfUlU9KiYfcsC2VHBf6q1OSPM6cfTW" }, "resume" : { "loginTokens" : [ { "when" : ISODate("2015-08-06T09:01:00.002Z"), "hashedToken" : "9KyqjRVSWm0nfIlS0sqODRmddlJ5GaG3mJ4+RMItOhk=" } ] } }, "emails" : [ { "address" : "my.email@domain.com", "verified" : false } ], "profile" : { "name" : "me" } }

关于这个问题的任何想法?
非常感谢!

1 个答案:

答案 0 :(得分:0)

您实际上并未设置 createdAt 字段值,请尝试:

createdAt:
  type: Date
  autoValue: function(){
    if this.isInsert return new Date()
    else if this.isUpsert return { $setOnInsert: new Date };
    else if this.isSet this.unset();
  }

您也可以省略架构中的optional: false,因为这是默认设置。

此外,我怀疑这是一个更大的问题,默认情况下并非所有用户密钥都返回到客户端,通常只发布 profile 。例如,您期望服务键,但通常不会遇到。查看mongo控制台中的文档,看看那里有什么。您可能需要向客户端发布更全面的密钥集。