Meteor - 节点简单模式验证数据以匹配模式
Meteor - node simple schema validate data to match schema
我想将我的 Rest-API
验证更改为 node simple schema
用于模式定义和 collection2@core
用于模式验证。
我想使用 Person schema
来验证用户提供的 data
。
Schemas = {};
Schemas.Person = new SimpleSchema({
name: {
type: String,
label: "Person's Name",
unique: true,
max: 200
},
surname: {
type: String,
unique: true,
label: "person's surname"
},
};
validData = API.utility.validate(data, Schemas.Person });
API: {
utility: {
validate: function(data, schema) {
return "The SimpleSchema Validation";
}
}
};
这种情况在simpl-schema documentation
中有描述
使用您的模式定义,您可以这样做:
Schemas.person.validate(data);
如果您想要立即查看结果或错误:
Schemas.person.isValid();
Schemas.person.validationErrors();
我想将我的 Rest-API
验证更改为 node simple schema
用于模式定义和 collection2@core
用于模式验证。
我想使用 Person schema
来验证用户提供的 data
。
Schemas = {};
Schemas.Person = new SimpleSchema({
name: {
type: String,
label: "Person's Name",
unique: true,
max: 200
},
surname: {
type: String,
unique: true,
label: "person's surname"
},
};
validData = API.utility.validate(data, Schemas.Person });
API: {
utility: {
validate: function(data, schema) {
return "The SimpleSchema Validation";
}
}
};
这种情况在simpl-schema documentation
中有描述使用您的模式定义,您可以这样做:
Schemas.person.validate(data);
如果您想要立即查看结果或错误:
Schemas.person.isValid();
Schemas.person.validationErrors();