我控制器
App.controller('Ctrl', ['$scope', function ($scope) {
$scope.user = {};
$scope.view = function() {
console.log($scope.user);
console.log($scope.user.length);
}]);
我的HTML
<input type="text" ng-model="user.lastname" />
<input type="email" ng-model="user.email" />
<input type="text" ng-model="user.address" />
<input type="email" ng-model="user.id" />
<input type="text" ng-model="user.city" />
<input type="email" ng-model="user.country" /> ---> This will be a select
任何字段是強制性的,我所要做的基於用戶輸入的搜索功能。我必須驗證用戶必須提供至少一個數據的一件事。當我把控制檯如上所述,我可以看到第一個值,而.length控制檯返回未定義。