メテオ アカウント ユーザーのユーザー ID を collection2 配列に格納するにはどうすればよいですか。私のスキーマの定義は次のようになります。これは機能しますか?
関連するユーザーをコレクションに追加する方法が必要でした。これにより、コレクションのこの特定のドキュメントを表示できるユーザーを制御したいと考えました。私がモデリングしている方法よりもこれを行うためのより良い方法はありますか?
name: {
type: String,
max: 100,
optional: false
},
billingAddress: {
type: AddressSchema
},
shippingAddress: {
type: [AddressSchema]
},
type: {
type: String,
max: 20,
allowedValues: ['Vendor', 'Customer', 'Self', 'Employee'],
optional: false
},
phones: {
type: [String]
},
emails: {
type: [String],
regEx: SimpleSchema.RegEx.Email
},
website: {
type: String,
regEx: SimpleSchema.RegEx.url
},
isCustomer: {
type: Boolean,
optional: false
},
isVendor: {
type: Boolean,
optional: false
},
isSearchable: {
type: Boolean,
optional: false
},
associatedUsers: {
type: [Meteor.users]
}