根據值是否未定義,我在設置ng-checked
時出現問題,以使複選框成爲true。例如,在下面的代碼..試圖檢查一個值是否未定義,以控制ng-checked的設置
<input class="custom-checkbox form-control" id="{{ point.pointId }}-{{ value }}"
type="checkbox"
ng-true-value="'{{ value }}'"
ng-model="item.sections[inspectionSection.sectionShortName[point.pointId].value">
我試圖通過檢查value
,其可以被設置爲多個值中的一個來設置ng-checked
被定義。
例如像:
ng-checked={{ if(value !== undefined) }}
我似乎無法得到它的工作。我在ng-checked
中嘗試的任何內容都會檢查所有複選框,或者不檢查。任何幫助非常感謝!
有關此問題的任何消息嗎? – Erazihel