0

我正在尝试使用 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" } }

对这个问题有任何想法吗?
非常感谢 !

4

1 回答 1

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在架构中省略,因为这是默认设置。

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

于 2015-08-06T16:48:49.197 回答