我正在使用 autoform,collection2。我想使用方法调用类型进行插入/更新,因为我想在保存到服务器中的数据库之前添加其他字段。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};
}
}