使用其他字段扩展用户集合

时间:2014-08-27 17:28:56

标签: meteor

嘿我想在内置的Meteor用户集中添加许多其他字段。到目前为止我已经尝试了

if Meteor.isServer

  Meteor.startup ->
    Meteor.users.remove({})
    if Meteor.users.find().fetch().length is 0

      console.log('Seeding database.')
      Characters.remove({})
      Duels.remove({})
      Meteor.users.remove({})

      # Accounts
      options = {
        email: 'example1@example.com'
        password: 'wasdf321'
        profile:
          character: {
            name: 'Testname'
            race: 'human'
          }
      }


      user1Id = Accounts.createUser(options)

当我在控制台中打印出用户对象时,字段已正确添加,但是,当我检查mongo数据库时,字段无处可寻。

0 个答案:

没有答案