-1
在以下應用程序中,如果客戶已經存在,我想顯示一條錯誤消息。我嘗試通過循環遍歷客戶名稱來完成此操作,但它似乎不起作用。換句話說,如何使用angular js檢查客戶名是否已經存在?如何驗證角度js
這裏是我迄今:
<script>
//create an object that ties with module
// pass an array of dependencies
var myApp = angular.module('myApp', []);
//create controller
myApp.controller('MainController', function($scope){
$scope.customers = [];
$scope.addCustomer = function(){
$scope.date = new Date();
$scope.customers.push({
name: $scope.customer.name
});
for(var i = 0; i < $scope.customers.name.length; i++) {
if(customers[i].name == name) {
alert('Customer already exists');
}
}
};
$scope.removeCustomer = function(index) {
$scope.customers.splice(index,1);
};
});
</script>
是啊,這不出於某種原因? – visBar
請參閱我的編輯。 –
Mr.d謝謝你的幫助,現在已經很清楚了。我將確保在未來實施您的建議。非常感謝。 – visBar