我想调整某些数组字段的标题文本。我所想的只是改变模式中的标签,但据我所知,这并没有影响。
...
address:{
type: [Schemas.address],
optional: true,
defaultValue: [],
autoform:{
label:"Add your addresses"
}
},
...
只需显示“地址”。作为参考,表单模板添加标题如下:
{{afFieldLabelText name=this.atts.name}}
答案 0 :(得分: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";
}
}
});