AngularJS Material: 无法获取 md-select 的值

AngularJS Material: Cannot get value of md-select

我有一个 AngularJS Material Select:

       <md-input-container style="margin-right: 10px;">
            <label>Roll</label>
            <md-select id="acc-type" required="" ng-model="rolle">
                <md-option ng-selected="true" value="Tenant">Tenant</md-option>
                <md-option value="Lessor">Lessor</md-option>
            </md-select>
        </md-input-container>

我想获得实际选择的选项。我试过

    var e = document.getElementById("acc-type");
    var selectedItem = e.value;

但我收到的都是未定义的。是否有任何选项可以获取 AngularJS 中的 md-select 的值?

它在 angular Js 和模型已经分配所以尝试 尝试

 console.log($scope.rolle);

由于您已经在 md-select 中定义了 ng-model="rolle",您可以通过 $scope.rolle

访问它

尝试:

var selectedItem = $scope.rolle