0

我在更新用户帐户时遇到了一些问题。我使用以下架构(collection2):

lib/collections/users.js

Users = Meteor.users;




var Schemas = {};


Schemas.User = new SimpleSchema({
gender: {
    type: Number,

    min: 1

},

s_gender: {
    type: Number,
    min: 1,
    optional:false
},
picture: {
    type: String,
    custom: function() {

        var base64Matcher = new RegExp("^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=|[A-Za-z0-9+/]{4})$");
        var value = this.value.replace("data:image/png;base64,","");
        if(!base64Matcher.test(value))
        {
            return 'no picture';
        }
        else
        {
            return true;
        }

    }
}
});

Users.attachSchema(Schemas.User);

现在我使用以下代码进行更新:

客户端/模板/start.js

  Users.update({_id: Meteor.userId()}, {
        $set: {picture: picture, gender: gender, s_gender: s_gender}
    }, {validationContext: "updateUser"}, function (error, result) {

        if (error) {
            errorObjs = Users.simpleSchema().namedContext("updateUser").invalidKeys();

            console.log(errorObjs);
        }

        console.log(result);
    });

验证通过,但我在结果中只得到一个“0”(错误为空) - 更新不起作用。如果我有一个空字段,则会显示错误,因此验证运行良好。如果我分离架构,更新工作正常。

我是不是在这里忘记了什么,或者为什么验证通过时他不更新?

// 编辑:我还看到,Meteor 不再创建用户了。

4

1 回答 1

0

我相信您需要使用 Users.profile.foo 而不是 Users.foo,因为 Users 是一个特殊的流星集合,您只能在配置文件字段中保存新字段。尝试使用 Simple Schema/Collection 2 建议的用户模式作为起点(我将在下面复制它)。请注意,“配置文件架构”在用户架构之前加载:

Schema = {};

Schema.UserProfile = new SimpleSchema({
    firstName: {
        type: String,
        regEx: /^[a-zA-Z-]{2,25}$/,
        optional: true
    },
    lastName: {
        type: String,
        regEx: /^[a-zA-Z]{2,25}$/,
        optional: true
    },
    birthday: {
        type: Date,
        optional: true
    },
    gender: {
        type: String,
        allowedValues: ['Male', 'Female'],
        optional: true
    },
    organization : {
        type: String,
        regEx: /^[a-z0-9A-z .]{3,30}$/,
        optional: true
    },
    website: {
        type: String,
        regEx: SimpleSchema.RegEx.Url,
        optional: true
    },
    bio: {
        type: String,
        optional: true
    }
});

Schema.User = new SimpleSchema({
    username: {
        type: String,
        regEx: /^[a-z0-9A-Z_]{3,15}$/
    },
    emails: {
        type: [Object],
        optional: true
    },
    "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
    }
});

Meteor.users.attachSchema(Schema.User);

来源:https ://github.com/aldeed/meteor-collection2

于 2015-07-21T10:57:23.553 回答