我有一个简单的表单<select>
和<input text>
;我需要的是如果选项的值为true,则禁用输入文本。这是我的代码:
<div class="form-group">
<label for="auth">{{ 'SETTINGS.SYSTEM.NET.WIFI.AUTH.LABEL' | translate }}</label>
<select name="auth" class="form-control" ng-model="wifi.securitytype">
<option value="true">{{ 'SETTINGS.SYSTEM.NET.WIFI.AUTH.NONE' | translate }}</option>
<option value="false">{{ 'SETTINGS.SYSTEM.NET.WIFI.AUTH.WEP' | translate }}</option>
<option value="false">{{ 'SETTINGS.SYSTEM.NET.WIFI.AUTH.WPA2' | translate }}</option>
</select>
</div>
<fieldset ng-disabled="wifi.securitytype">
<div class="form-group" ng-class="{'has-error':wifiForm.password.$invalid && !wifi.securitytype}">
<label for="password">{{ 'SETTINGS.SYSTEM.NET.WIFI.PASSWORD' | translate }}</label>
<input class="form-control" name="password" placeholder="{{ 'SETTINGS.SYSTEM.NET.WIFI.PASSWORD_PLACEHOLDER' | translate }}" ng-model="wifi.wpakey" ng-pattern='/^(?!\s*$).+/' ng-model-options="{ updateOn: 'blur' }">
<span class="help-block ng-hide" ng-show="wifiForm.password.$invalid && !wifi.securitytype">RICHIESTA PASSWORD DI RETE</span>
</div>
</fieldset>
问题是<fieldset>
曾被禁用。我的错在哪里?
答案 0 :(得分:2)
我认为您期望选项值是布尔类型。但HTML属性始终是字符串,因此您应该在两种情况下评估它们,“true”或“false”,如指向here
尝试用
替换 ng-disabled 条件<fieldset ng-disabled="'true' === wifi.securitytype">
答案 1 :(得分:0)
wifi.securitytype
将返回'true'
或'false'
根据javascript非空字符串和真实字符,因此您的ng-disabled
始终评估为true
。你可以按照@Eirini的建议去做。