我想創建新用戶時創建選擇它將需要一個組。它工作得很好,但「檢查」選項由於某種原因不起作用。我怎樣才能使「用戶」被選中,所以如果按下新建用戶按鈕,情況會如此呢?Angularjs無線電選擇作爲檢查
<div class="radio-group" required>
<h3>Set user group</h3>
<label class="radio-inline">
<input type="radio" name="groupradio" value="2" ng-model="groups.group" required> Admin
</label>
<label class="radio-inline">
<input type="radio" name="groupradio" value="1" ng-model="groups.group" checked> User
</label>
<label class="radio-inline">
<input type="radio" name="groupradio" value="3" ng-model="groups.group"> Viewer
</label>
</div>
<button class="btn-sonera" ng-click="createUser(user, groups)"><i class="fa fa-floppy-o" aria-hidden="true"></i> Create user</button>
檢查= 「檢查」 –
看到這個http://stackoverflow.com/questions/23279296/radio-buttons-ng-checked-with-ng-model –
我們可能缺失一些背景。正如你可以在你的代碼中看到這個運行程序(https://plnkr.co/edit/VE93DmUXIBxRYJX7mpgy?p=preview),用戶複選框被選中。 – Eric