在更新aldeed autoform上未调用模板助手

时间:2015-06-16 07:34:32

标签: meteor meteor-autoform meteoric

我正在使用meteoric-autoform并对我的值进行更新,表单没有填充现有值,并且更新没有发生。 我还可以看到我获取的用于获取id的模板助手方法根本没有被调用。

assesmentEdit.js

Template.assesmentEdit.helpers({
  assesment: function () {
      alert("entered helper");
      console.log(template.data.id);
    var template = Template.instance();
    return Assesments.findOne({_id: template.data.id});
  }
});

assesmentEdit.html

<template name="assesmentEdit">
  {{#ionModal customTemplate=true}}
    {{# autoForm collection="Assesments" id="assesments-edit-form" type="update"}}
      <div class="bar bar-header bar-stable">
        <button data-dismiss="modal" type="button" class="button button-clear">Cancel</button>
        <h2 class="title">Edit Assesment</h2>
        <button type="submit" class="button button-positive button-clear">Save</button>
      </div>
      <div class="content has-header overflow-scroll">
        {{> afQuickField name="name" }}
        {{> afQuickField name="email"}}
        {{> afQuickField name="category"}}
        {{> afQuickField name="location"}}
      </div>
    {{/autoForm}}
  {{/ionModal}}
</template>

1 个答案:

答案 0 :(得分:0)

正如您所见in the docsupdate表单需要doc属性。

{{# autoForm doc=assesment collection="Assesments" id="assesments-edit-form" type="update"}}