0
我的HTML:明確選擇複選框範圍值
<div class="check" ng-repeat="point in dbs">
<input
name="db"
id="{{point.id}}"
ng-model="point.select"
ng-click="update($index, dbs)"
ng-checked="false"
type="checkbox"
ng-required="point.select" />
</div>
雖然我的update()函數看起來像:
$scope.update = function(position, dbs) {
angular.forEach(dbs, function(point, index) {
if (position != index)
point.select = false;
});
}
此作品如關於跟蹤選定的複選框是什麼,發送到另一個預期價值的控制者,一切都很好。但是,當我從結果頁面返回時,再次返回到此搜索表單,不知何故,我之前選擇的複選框已預先選擇,我不希望出現任何內容,而只是將所有內容都留空。
難道是那麼容易,因爲簡單的聲明:
$scope.point.select = null;
,因爲我似乎無法找到一個很好的解決方案,從而使該複選框,當你在這抵達始終爲空白/沒有預先選擇形成。