我是初學者使用AngalurJs和材料AngalurJs
我需要解決一個小問題
我需要隱藏的錯誤消息,當用戶點擊復位按鈕
我試過$setUntouched
和$setPristine
更改狀態的輸入,但不能掩蓋消息
我也試過ng-if
和ng-show
和不工作
HTML代碼,我用了NG的消息:隱藏NG-消息
<div ng-messages="formName.fieldName.$error">
<div ng-message="required">...</div>
</div>
而對於復位形式的js代碼:
<button ng-click="onclear">Clear</button>
// on controller js file code :
$scope.onclear = function(){
$scope.formName.$setUntouched();
$scope.formName.$setPristine();
}