我有一個select
標籤,我正在應用角度選擇。如何在Angular Chosen中設置默認選定值?
這是我的select
標籤
<select name="rname" id="rname" ng-model="rname" ng-init="rname='CustomReport'"
ng-options="key as value for (key , value) in reportsValuesOptions track by key" chosen>
<option value="">---Select---</option>
</select>
上面select
標籤正從下面對象
$scope.reportsValuesOptions = {'Cash Position Report':'Cash Position Report','Detail Report':'Detail Report','Reconciliation Report':'Reconciliation Report','Summary Report':'Summary Report','Sweep Report':'Sweep Report','FCCS/FBPS Detail Report':'FCCS/FBPS Detail Report','CustomReport':'Custom Report Name'};
填充的目的是一種用於select
標籤的一對值和選項,其中的key
是options tags value
和value
是option tag text
現在我想將select
標籤的默認值設置爲'CustomReport'
爲option value
和'Custom Report Name'
從上述目的的option text
,使用ng-init
。
我想這樣做ng-init="rname='CustomReport'"
,但它不工作
如何設置從對象的鍵值對的價值?
其更好地從JS,而不是從HTML ..所以只是初始化'$ scope.rname =默認element' – harishr