我有一个带有以下字段的Meteor AutoForm集合架构,我正在尝试使其独一无二。它在相同的情况下不允许相同的值,但是当我更改值的大小写时,会插入值,那么如何防止使用不同的大小写插入重复值?
与Test
,TEST
,TesT
一样,都具有相同的拼写,因此不应插入。
我试过了:
Schemas.Organisation = new SimpleSchema({
company: {
type: String,
max: 200,
unique: true,
autoValue: function () {
if (this.isSet && typeof this.value === "string") {
return this.value.toLowerCase();
}
},
autoform:{
label: false,
afFieldInput: {
placeholder: "Enter Company Name",
}
}
}
})
但它不是让我插入重复值,而是在保存在db中时转换为全部小写。那么如何保存用户输入的值,但值不应该有相同的法术?
答案 0 :(得分:1)
这可以通过使用自定义客户端验证来实现。如果您不想将Organisation
集合的所有文档发布到每个客户,则可以使用asynchronous validation approach,例如:
Organisations = new Mongo.Collection("organisations");
Organisations.attachSchema(new SimpleSchema({
company: {
type: String,
max: 200,
unique: true,
custom: function() {
if (Meteor.isClient && this.isSet) {
Meteor.call("isCompanyUnique", this.value, function(error, result) {
if (!result) {
Organisations.simpleSchema().namedContext("insertCompanyForm").addInvalidKeys([{
name: "company",
type: "notUnique"
}]);
}
});
}
},
autoValue: function() {
if (this.isSet && typeof this.value === "string") {
return this.value.toLowerCase();
}
},
autoform: {
label: false,
afFieldInput: {
placeholder: "Enter Company Name",
}
}
}
}));
if (Meteor.isServer) {
Meteor.methods({
isCompanyUnique: function(companyName) {
return Organisations.find({
company: companyName.toUpperCase()
}).count() === 0;
}
});
}
<body>
{{> quickForm collection="Organisations" id="insertCompanyForm" type="insert"}}
</body>
这里是MeteorPad。