在循环中选择了流星选择选项

时间:2014-11-06 10:20:44

标签: meteor

Meteor select标签动态选择它。请帮助我。

{{#with api_method_data_chnage}}
    <select id="result_type"> 
    <option value="{{ result_type }}"> {{ result_type }}</option>
    </select>
{{/with}}

1 个答案:

答案 0 :(得分:0)

以下是答案:https://github.com/meteor/meteor/wiki/Using-Blaze#conditional-attributes-with-no-value-eg-checked-selected

<option value="{{ result_type }}" selected={{isSelected result_type}}> {{ result_type }}</option>

现在您只需要创建帮助器isSelected并使其返回truefalse,具体取决于参数是否为所选参数。