Meteor autoform访问嵌套属性

时间:2014-11-05 02:51:32

标签: meteor meteor-autoform

我已经获得了一些链接模式,并尝试从主模式的表单中访问子模式的属性。我知道,这是一个满口的。代码可能有所帮助:

//js
Collection = new Meteor.Collection('collection');
Schemas = {};
Schemas.secondary = new  SimpleSchema({
    unitType: {
       type: String,
      autoform: {
        type: 'select',
       options: //function with all the options 
     }
    }
});

Schemas.primary= new SimpleSchema({
    name: {
        type: String,
    },
        units: {
        type: [ Schemas.secondary ]
    }
});

Collection.attachSchema(Schemas.primary);


//HTML
{{#autoForm collection="Collection" id="someId" type="insert"}}
   {{> afQuickField name='name'}} // this works
   {{> afQuickField name='units'}} // this works
   {{> afQuickField name='units.unitType'}} // this doesn't work :-(
{{/autoForm}}

我之所以这样做,是因为我希望根据选择框的值有条件地显示辅助架构中的其他属性。我还尝试在表单中放置一个表单然后运行{{#each afFieldNames name='"units"}},但这也没有用。它不是仅给出单元中包含的字段(即二级模式),而是循环遍历主要和次要的所有字段。

思考?我没有嫁给这种模式,但我不能想到另一种方式。

再次感谢,所有人。 分贝

1 个答案:

答案 0 :(得分:0)

我自己有这个问题。

放手一搏

{{> afQuickField scope='units.unitType' name='units.unitType'}} 

如果您在之前的提交挂钩中转储修改器,您应该能够看到已成功填写的子文档

AutoForm.hooks({
  someId: {
    before: {
      'insert': function(modifier) {
        console.log(modifier);
      }
    }
  }
});

请告诉我这是否适合您!

一切顺利, 埃利奥特