0

meteor-collection2ユーザー プロファイルで拡張しました

ユーザープロフィール

/// --- User Profile --- ///
UserProfile = new Mongo.Collection("userprofile");
Schema.UserProfile = new SimpleSchema({
    userName: {
        type: String,
        optional: true
    },
    userGender: {
        type: String,
        allowedValues: ['Male', 'Female'],
        optional: true
    },
    userAge: {
        type: Number,
        optional: true,
        regEx: /^[0-9]{2}$/
    },
    userWeight: {
        type: Number,
        decimal: true,
        optional: true
    },
    userGrowth: {
        type: Number,
        optional: true
    },
    userExpirience: {
        type: Number,
        optional: true
    },
    userAvatarId: {
        type: String,
        optional: true
    },
    profileComplete: {
        type: Boolean,
        optional: true
    }
});
UserProfile.attachSchema(Schema.UserProfile);

ユーザー

/// --- User --- ///
Schema.User = new SimpleSchema({
    username: {
        type: String,
        regEx: /^[a-z0-9A-Z_]{3,15}$/
    },
    emails: {
        type: [Object]
    },
    "emails.$.address": {
        type: String,
        regEx: SimpleSchema.RegEx.Email
    },
    "emails.$.verified": {
        type: Boolean
    },
    createdAt: {
        type: Date
    },
    profile: {
        type: Schema.UserProfile,
        optional: true
    },
    services: {
        type: Object,
        optional: true,
        blackbox: true
    },
    // Add `roles` to your schema if you use the meteor-roles package.
    // Option 1: Object type
    // If you specify that type as Object, you must also specify the
    // `Roles.GLOBAL_GROUP` group whenever you add a user to a role.
    // Example:
    // Roles.addUsersToRoles(userId, ["admin"], Roles.GLOBAL_GROUP);
    // You can't mix and match adding with and without a group since
    // you will fail validation in some cases.
    roles: {
        type: Object,
        optional: true,
        blackbox: true
    },
    // Option 2: [String] type
    // If you are sure you will never need to use role groups, then
    // you can specify [String] as the type
    roles: {
        type: [String],
        optional: true
    }
});
Meteor.users.attachSchema(Schema.User);

しかし、 useAgeなど、ユーザーのプロパティを更新することはできません。

私がそれをやろうとすると:

Meteor.users.update({_id: userId}, {$set: {userAge: 30}}, {validate: false});

ユーザーとコレクションのデータを破壊し、IDのみを含みます

2 番目の質問: ex age のユーザー プロファイルからデータを取得するにはどうすればよいですか?

4

1 に答える 1

0

プロファイルの userAge だけでなく、ユーザーのコンテンツ全体を上書きします。以下の小さな変更で問題が解決すると思います。

Meteor.users.update({_id: userId}, {$set: {profile.userAge: 30}}, {validate: false});

「ex age」という時代の歴史が何を意味するのかよくわかりません。

于 2015-07-02T22:18:19.290 に答える