2

在 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在我的模板中?

4

1 回答 1

3
Template.yourTemplate.helpers({
  label: function (value) {
    return _.findWhere(YourSchema.schema('parameter').autoform.options, { value: value }).label;
  }
});
于 2015-10-03T12:25:13.063 回答