使用自动表单验证 Meteor Method 上的模式
Verifying schema on Meteor Method using autoform
我正在使用自动表单,collection2。我想为 insert/update 使用方法调用类型,因为我想在保存到服务器中的数据库之前添加其他字段。 SimpleSchema 会检查客户端中的数据,但我怎样才能让数据也根据服务器端的模式进行检查?我添加新数据的方法如下:
Meteor.methods({
companyAdd: function (companyAttr) {
// add additional fields to document
var currentDate = new Date();
var company = _.extend(companyAttr, {
createdBy: user._id,
createdAt: currentDate
});
var newCompanyId = Companies.insert(company);
return {_id: newCompanyId};
}
}
我在 simpleschema 的文档中发现,如果其他人以后需要解决方案:您可以检查模式:
Meteor.methods({
companyAdd: function (companyAttr) {
//here we check the data sent to method against the defined schema
check(companyAttr, Companies.simpleSchema());
var currentDate = new Date();
var company = _.extend(companyAttr, {
createdBy: user._id,
createdAt: currentDate
});
var newCompanyId = Companies.insert(company);
return {_id: newCompanyId};
}
}
我正在使用自动表单,collection2。我想为 insert/update 使用方法调用类型,因为我想在保存到服务器中的数据库之前添加其他字段。 SimpleSchema 会检查客户端中的数据,但我怎样才能让数据也根据服务器端的模式进行检查?我添加新数据的方法如下:
Meteor.methods({
companyAdd: function (companyAttr) {
// add additional fields to document
var currentDate = new Date();
var company = _.extend(companyAttr, {
createdBy: user._id,
createdAt: currentDate
});
var newCompanyId = Companies.insert(company);
return {_id: newCompanyId};
}
}
我在 simpleschema 的文档中发现,如果其他人以后需要解决方案:您可以检查模式:
Meteor.methods({
companyAdd: function (companyAttr) {
//here we check the data sent to method against the defined schema
check(companyAttr, Companies.simpleSchema());
var currentDate = new Date();
var company = _.extend(companyAttr, {
createdBy: user._id,
createdAt: currentDate
});
var newCompanyId = Companies.insert(company);
return {_id: newCompanyId};
}
}