AngularJS材料下拉选项不起作用

时间:2017-10-13 14:01:15

标签: angularjs angularjs-material md-select

我正在尝试使用AngularJS Material构建表单,并且在显示下拉选项时遇到问题。我的HTML在下面,我的选项存储在我的服务器脚本上的对象数组中。我下面做错了什么?

<md-input-container class="md-block" flex-gt-sm ng-switch-when="choice">
    <label for="{{element.section_element_name}}">{{element.section_element_label}}</label>
    <md-select id={ {element.section_element_name}} type="selectbasic" value={{element.q_value}}>
        <md-option ng-repeat="option in element.section_element_choices" value="{{option.element_choice_value}}">
            {{option.element_choice_label}}
        </md-option>
    </md-select>
</md-input-container>

1 个答案:

答案 0 :(得分:0)

TEXT