aldeed:Autoform afFieldValueIs数组字段助手

时间:2015-11-19 07:52:27

标签: meteor meteor-autoform

我试图像这样制作autoform。 我想要的是Fields。$。min字段只有在字段时才能看到。$。type =“Number”。在演示(aldeed:autoform)中,它是针对普通字段而不是针对阵列字段完成的。尝试了几种组合来使用afArrayField等但没有运气。可以这样做吗?

Registers.attachSchema(new SimpleSchema({
  config: {
    type: Object
  },
  'config.name': {
    type: String,
    label: 'Register Name',
    autoform: {
      'label-type': 'floating',
      placeholder: 'Register Name',


    max: 200
  }},
  **fields: {
    type: [Object]
  }**,
  'fields.$.name': {
    type: String,
    autoform: {
      'label-type': 'placeholder',
      placeholder: 'Field Name'
    }
  },
'fields.$.**min**': {
    type: String,
    autoform: {
      'label-type': 'placeholder',
      placeholder: 'Min Value'
    }
  },
  'fields.$.type': {
    type: String,
    label: 'Label',
    autoform: {
      options: [
        {value: 'String', label: 'String'},
        {value: 'Number', label: 'Number'},
        {value: 'Date', label: 'Date'},
        {value: 'Password', label: 'Password'}
      ]
    }
  }
}));

0 个答案:

没有答案