(1)、
使用 ng-checked
即可。
<label class="radio-inline"> <input name="display" type="radio" value="true" ng-model="institution.display" ng-checked="true" required> 顯示 </label> <label class="radio-inline"> <input name="display" type="radio" value="false" ng-model="institution.display"> 隱藏 </label>
(2)、
雙向綁定
雙向綁定
雙向綁定
重要的說三遍~~~
$scope.institution.display = "true";
即ng-model和value相同即可。
(https://segmentfault.com/q/1010000003712548)