0
Property.attachSchema(new SimpleSchema({
  'LGA': {
    label: "L.G.A",
    type: String,
    allowedValues:
    ["Aba","Oha", "Enu"],
    autoform: {
        afFieldInput: {
          firstOption: "(Pls, Select the L.G.A)"
        }
    }
  }
,
'Town': {
  label: "Town",
  type: String,
  allowedValues:
  ["Abakpa","Ewula", "Ezeoka", "Ubu","Echa", "Onu" ,"Eke", "Afor"],
  autoform: {
    afFieldInput: {
      firstOption: "(Pls, Select the Ward)"
    }
    }
  }

});

我有上面的模式,我正在使用 quickForm 来实现这个模式。“Abakpa”、“Ewula”、“Ezeoka”是“Aba”LGA 中的城镇,“Ubu”、“Echa”、“Onu”是“Oha”LGA 中的城镇,“Eke”、“Afor”属于“Enu” LGA。这只是为了说明,因为列表非常多。我想要一种情况,如果选择“Aba”,则可用于城镇选择字段的选项将是“Abakpa”、“Ewula”、“Ezeoka”。如果选择了 Oha,那么“Ubu”、“Echa”、“Onu”将是 Town 模式等中的下一个选项。请问,我该如何实现?谢谢。

4

0 回答 0