0
獲得選擇項這是我的代碼來填充選擇列表。如何從MD-選擇angularjs
<md-option ng-value="brand.name" ng-repeat="brand in brands">{{ brand.name }}</md-option>
</md-select>
我想這個品牌的用戶選擇在範圍上應變量SELECTEDBR以及
可用但它給我的定義。
什麼是錯上面的代碼?
獲得選擇項這是我的代碼來填充選擇列表。如何從MD-選擇angularjs
<md-option ng-value="brand.name" ng-repeat="brand in brands">{{ brand.name }}</md-option>
</md-select>
我想這個品牌的用戶選擇在範圍上應變量SELECTEDBR以及
可用但它給我的定義。
什麼是錯上面的代碼?
<div layout="row">
<md-select class="inline-flex md-select-down" placeholder="Select" ng-model="selectedBrand">
<md-option ng-repeat="item in brands" value="{{item.name}}">
{{item.name}}
</md-option>
</md-select>
</div>