Meteor Autoform不会更新集合

时间:2015-10-06 07:48:12

标签: javascript meteor meteor-autoform

我有问题,我的更新和update-pushArray没有真正更新或添加到我的数组。

我的模板是:

<template name="PersonShow">
<div class="container">
    <div class="user-data">
        <h2>{{name}}</h2>
        {{> quickForm id="PersonShow" type="update" collection="Registry" doc=this fields="isActiveEmployee"}}
    </div>
    <div class="device-data">
        {{#each device}}
        <h3><p>Device: {{type}}</p></h3>
        <h3><p>Quantity: {{quantity}}</p></h3>
        {{#autoForm id="PersonShow" type="update" collection="Registry" doc=this}}
        {{> afQuickField name="device.0.isInUse"}}
        {{> afQuickField name="comment"}}
        <button type="submit" class="btn btn-primary">Submit</button>
        {{/autoForm}}
        {{/each}}
    </div>
    <div class="add-new-device">
        {{> quickForm id="PersonShow" type="update-pushArray" collection="Registry" doc=this scope="device"}}
    </div>
</div>
</template>

和我的收藏品:

Registry = new Mongo.Collection("registry");

Registry.attachSchema(new SimpleSchema({
  name: {
    type: String,
    label: "First and lastname",
    max: 200,
    optional: false
  },
  device: {
    type: Array,
    optional: true
  },
  'device.$': {
    type: Object
  },
  'device.$.type': {
    type: String
  },
  'device.$.isInUse': {
    type: String,
    optional: true,
    autoform: {
      options: [
        {label: "Yes", value: "Yes"},
        {label: "No", value: "No"}
        ]
    }
  },
  'device.$.serialNumber': {
    type: String,
    optional: true
  },
  'device.$.quantity': {
    type: Number,
    min: 0
  },
  isActiveEmployee: {
    type: String,
    optional: false,
    autoform: {
      options: [
        {label: "Yes", value: "Yes"},
        {label: "No", value: "No"}
        ]
    }
  },
  comment: {
    type: String,
    label: "Comments",
    optional: true,
    max: 1000
  },
}));

按下update / update-pushArray时没有任何事情发生,没有任何内容被发送到集合。

如果我这样做,

更新有效:

{{> afQuickField name="device"}}但我只想更新数组中的一个特定字段。

同样对于update-pushArray,我想将内容添加到我的数组device

有人能看到这个有什么不对吗?

1 个答案:

答案 0 :(得分:0)

问题与模板有关。当我将每个表单放到不同的模板时,问题就解决了。