2013-02-13 58 views

回答

2

僅供參考,_id現在在OnCreateUser中有效,因爲流星0.5.8 ...

1

你可以簡單地擴展用戶集合添加任何你想要的屬性:

Accounts.onCreateUser(function(options, user) { 
    // We still want the default hook's 'profile' behavior. 
    if (options.profile) { 
    user.profile = options.profile; 
    user.profile.user_status = "new"; 
    } 
    return user; 
}); 

這不會更新比users其他任何集合,所以它不能被用來商店新用戶_id作爲另一個集合中的外鍵。

+0

謝謝@DavideWihl。我希望能夠通過使用對用戶的引用來初始化其他集合。我以後可以隨時檢查它,但如果可能的話,在創建用戶時看起來更清晰。 – 2013-02-14 23:47:56

相關問題