1

我想调整某些数组字段的标题文本。我想尝试的只是更改架构中的标签,但据我所知,这并没有影响。

...
address:{
  type: [Schemas.address],
  optional: true,
  defaultValue: [],
  autoform:{
    label:"Add your addresses"
  }
},
...

简单地显示“地址”。作为参考,表单模板添加标题如下:

{{afFieldLabelText name=this.atts.name}}
4

1 回答 1

0

https://github.com/aldeed/meteor-simple-schema#label

label 属性不应嵌套在 autoform 中。请参见下面的代码:

MySchema = new SimpleSchema({ firstName: { type: String, label: function () { return Session.get("lang") == "de" ? "Vorname" : "first name"; } } });

于 2015-12-30T09:57:44.250 回答