0

我正在使用Collection2包为我的 Meteor 应用程序集成架构和简单的验证方法。

插入工作得很好,会适当地出错,并且在按预期有效时插入。根据文档,使用更新方法几乎相同,但验证错误不断出现,即使每个架构都有效。

因此,例如,我将提交一个新的属性(一个实际的家庭/公寓)来验证模式,并且它没有问题。我将去编辑该属性,在 1 个字段上更改一个字母,但它会在各个字段上出错。

我有点不知所措。这很简单。在介绍 Collection2 之前,我更新文档没有问题,但我认为包本身没有问题,因为我知道它正在使用并正在积极更新。也许我需要把这个方法放在服务器上?

任何帮助,将不胜感激。谢谢!

客户端JS文件:

Template.propertyEdit.events({
  'submit form': function(e){
    e.preventDefault();

    var property_details = {
      name: $(e.target).find('[name=name]').val(),
      address: $(e.target).find('[name=address]').val(),
      city: $(e.target).find('[name=city]').val(),
      state: $(e.target).find('[name=state]').val(),
      zipcode: $(e.target).find('[name=zipcode]')
    }

    Properties.update(this._id, {$set: property_details}, function(error,result){
      if(error){
        for(var i=0; Properties.simpleSchema().namedContext().invalidKeys().length > i; i++ ){
          throwError(Properties.simpleSchema().namedContext().invalidKeys()[i].message);
        }
      }else{
        alert("Property details updated");
        Router.go('propertyOverview', {_id: result});
      }
    });

  });

收藏:

Properties = new Meteor.Collection2('properties', {
  schema: {
    name: {
        type: String,
        label: "Property Name",
        min: 1
    },
    address: {
        type: String,
        label: "Address",
        min: 1
    },
    city: {
        type: String,
        label: "City",
        min: 1
    },
    state: {
        type: String,
        label: "State",
        min: 2,
        max: 2
    },
    zipcode: {
        type: String,
        label: "Zip Code",
        min: 5,
        max: 11
    },
    userId: {
        type: String,
        label: "User Id",
        min: 8
    }
  }
});
4

1 回答 1

0

终于看到了问题..在模板中,HTML,占位符属性似乎注册为一个值,即使值属性有内容..

我有:

<input name="zipcode" type="text" class="form-control" value="{{zipcode}}" placeholder="Enter a Zip Code" />

将其更改为:

<input name="zipcode" type="text" class="form-control" value="{{zipcode}}" />

它奏效了:)

不确定这是刚刚知道的,我应该知道的,还是一个错误。无论如何我都会提交。

于 2014-01-09T00:43:49.543 回答