简体   繁体   English

AngularJS材质下拉菜单不起作用

[英]AngularJS Material dropdown options not working

I'm trying to build a form using AngularJS Material and am having problems getting my dropdown options to show up. 我正在尝试使用AngularJS Material构建表单,但是在显示下拉菜单时遇到问题。 My HTML is below and my options are stored in an object array on my server script. 我的HTML在下面,我的选项存储在服务器脚本的对象数组中。 What am I doing wrong below? 我在下面做什么错了?

<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>
<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" ng-model="selectedItem">
    <md-option ng-repeat="option in element.section_element_choices" value="{{option.element_choice_value}}">
        {{option.element_choice_label}}
    </md-option>
</md-select>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM