具有嵌套模式的 Meteor Autoform pushArray

Meteor Autoform pushArray with nested schema

我正在为流星使用 autoform。我有一组嵌套模式,如下所示:

addresses: {
  type: [Schemas.address],
  optional: true,
  defaultValue: []
}

我正在尝试使用 update-pushArray

向数组添加地址
{{> quickForm id="myformid" type="update-pushArray" doc=getDocument collection=getCollection scope="addresses"}}

但我得到了这些宝石:

MinimongoError: Cannot apply $push modifier to non-array

"MongoError: The field 'addresses' must be an array but is of type Object in document {_id: "383EfPJgeZQJFgs72"} [409]"

所以我尝试将它包装在数组中的 formToDoc 挂钩中:

SimpleSchema.clean: filtered out value that would have affected key "0", which is not allowed by the schema

所以...是的。这是我新想法的极限。你有什么?

在您发布此问题几天后,update-pushArray 类型似乎一直存在问题。根据 aldeed,您需要 运行 Autoform 5.0.2 和 Meteor 1.0.3.1 或更高版本才能工作。 http://github.com/aldeed/meteor-autoform/issues/788. Also, aldeed posted a sample that might help http://autoform.meteor.com/updatepush