在Meteor模板{{parameter}}
中返回此架构的选项值:
new SimpleSchema({
parameter: {
type: String,
allowedValues: ['value_1', 'value_2'],
autoform: {
options: [
{label: "label_1", value: 'value_1'},
{label: "label_2", value: 'value_2'}
]
}
},
});
如何在模板中获取label
而不是value
?
答案 0 :(得分:3)
Template.yourTemplate.helpers({
label: function (value) {
return _.findWhere(YourSchema.schema('parameter').autoform.options, { value: value }).label;
}
});