1
我有一個使用Codeigniter
和AngularJs
開發的應用程序。我想在手動選擇框中設置一個默認項目,但角度添加了一個空的未定義項目。在angularjs選擇框中選擇的選項
<select class="form-control" ng-model="newItem.is_active">
<option value="N" ng-selected="selected"><?php echo $this->lang->line('label_inactive'); ?></option>
<option value="Y"><?php echo $this->lang->line('label_active'); ?></option>
</select>
在控制器,用於'NG-模型= 「newItem.is_active」 中設定的值' –
@ShijuKBabu怎麼樣? – devo