0
我有一個關於angularJS的問題。驗證表單併發送未驗證的表單輸入與angularJS
我想驗證一個表單。如果出現錯誤,我想要執行操作以便進一步處理數據。即用戶尚未填寫所有字段,但我仍然要發送輸入。
在此先感謝...
我有一個關於angularJS的問題。驗證表單併發送未驗證的表單輸入與angularJS
我想驗證一個表單。如果出現錯誤,我想要執行操作以便進一步處理數據。即用戶尚未填寫所有字段,但我仍然要發送輸入。
在此先感謝...
您應該檢查形式的$valid
屬性控制器內。
<form name="newFeed"> URL: <input size="80" name="url" ng-model="newFeed.url" type="url" required> <button ng-click="addFeed(newFeed)">Add Feed</button> </form>
在一控制器,一界限值可以詢問用於通過檢查>
$valid
屬性驗證狀態。$scope.addFeed = function(feed) { if (feed.$valid) { // Copy this feed instance and reset the URL in the form $scope.feeds.push(feed); $scope.newFeed.url = {}; } };
(取自here)。
您每次通過按提交按鈕調用addFeed
時都檢查$valid
屬性。