我正在使用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
}
}
});
答案 0 :(得分:0)
最后看到问题..在模板中,HTML,占位符属性似乎注册为值,即使value属性有内容..
我有:
<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}}" />
它有效:)
不确定这件事是否已知,我应该知道,还是一个错误。无论如何,我都会提交。