5

我正在使用 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};
  }
}
4

1 回答 1

5

我在 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};
  }
}
于 2015-03-10T13:06:21.703 回答