1

我正在尝试使用 angularjs 和 md-select 进行选择选项。问题是,<md-option ng-value=""></md-option>什么都不做。

我在 github 上看到了多个问题,但没有有效的修复。

<md-input-container>
    <md-select  ng-change="$ctrl.onFieldChanged(field)"
                ng-required="true">
        <md-option ng-value=""></md-option>
        <md-option ng-repeat="option in field['options'] | orderBy: 'sort_id' | filter : {enabled: true}"
                ng-value="option.o_id">
            {{ option.value }}
        </md-option>
    </md-select>
    <div ng-messages="itemDetailsForm[field.title].$error">
        <div ng-message="required">{{ 'INPUT_ERR.REQUIRED' | translate }}</div>
    </div>
</md-input-container>
4

1 回答 1

1

这是材料设计的长期问题

你可以试试<md-option ng-value="''">

于 2018-10-08T12:42:14.780 回答