我正在尝试使用 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>