我使用SimpleSchema documentation中引用的示例实现了自定义验证功能,以验证用户名的唯一性。在该示例中,如果发现用户名已存在,则进行异步调用并显示自定义验证消息。
有一条注释表明,如果所有表单字段都有效,则表单将被提交,但由于架构中指定的“unique:true”要求,用户创建将失败。以下是示例文档中代码的相关部分:
username: {
type: String,
regEx: /^[a-z0-9A-Z_]{3,15}$/,
unique: true,
custom: function () {
if (Meteor.isClient && this.isSet) {
Meteor.call("accountsIsUsernameAvailable", this.value, function (error, result) {
if (!result) {
Meteor.users.simpleSchema().namedContext("createUserForm").addInvalidKeys([{name: "username", type: "notUnique"}]);
}
});
}
}
}
在我的情况下,如果激活代码有效,我的代码工作在我测试的地方,我甚至得到显示错误的界面,但是由于没有其他“模式”失败,表单提交,尽管无效的响应...我是否需要手动阻止表单提交(即使用jQuery),或者我应该使用SimpleSchema中的某些内容?
activationCode: {
type: String,
label: "Activation Code",
max: 200,
min: 10,
regEx: /^(?=.*[A-Z])(?=.*\d).+$/,
custom: function() {
if (Meteor.isClient && this.isSet) {
Meteor.call("validateActivationCode", this.value, function(error, result) {
if (result && !result.isValid) {
Clients.simpleSchema().namedContext("signupForm").addInvalidKeys([{
name: "activationCode",
type: "notValid"
}]);
return false;
}
});
}
}
}
谢谢