我是Angular的新手,我嘗試做一個簡單的黑名單檢查。目前,我有兩個文本可以用ng-show顯示和隱藏。當郵件模式錯誤時應顯示第一個,當正確和/或在黑名單上時隱藏。電子郵件黑名單和驗證
我的問題是,我不知道模型必須如何實現。目前它是由複選框模擬的。也許有人有提示。
<div class="controls">
<input type="checkbox" ng-model="checked" ng-init="checked=true" /><br/>
<input type="email" id="inputEmail" placeholder="Email" ng-model="email" required>
<div class="hint">
<h4 name="mailValidator" ng-if="checked" ng-show="true">Invalid Email</h4>
<h4 name="checkBlacklist" ng-if="!checked" ng-show="true">Email is not allowed</h4>
</div>