使用 Autoform、SimpleSchema、Collection2 等时,从 Meteor 中的数据中排除字段值的最佳方法是什么?说我有:
MySchema = new SimpleSchema({
password: {
type: String,
label: "Enter a password",
min: 8
},
confirmPassword: {
type: String,
label: "Enter the password again",
min: 8,
custom: function () {
if (this.value !== this.field('password').value) {
return "passwordMismatch";
}
}
}
});
...而且我不想将 ConfirmPassword 字段持久化到数据库中,最好的处理方法是什么?我假设使用钩子,但如果是这样,在哪里以及如何?希望有一种方法可以只排除一个(或多个)值,而不必重新定义整个架构来说明要包含哪些以及要排除哪些。如果我有 100 个字段并且想要排除 1,希望钩子或任何不需要其他 99 的东西也被玷污。
TIA