Bir kontrolörde bir formun geçerli olup olmadığını kontrol etmem gerekiyor.
Görünüm:
<form novalidate=""
name="createBusinessForm"
ng-submit="setBusinessInformation()"
class="css-form">
<!-- fields -->
</form>
Denetleyicimde:
.controller(
'BusinessCtrl',
function ($scope, $http, $location, Business, BusinessService,
UserService, Photo)
{
if ($scope.createBusinessForm.$valid) {
$scope.informationStatus = true;
}
...
Bu hatayı alıyorum:
TypeError: Cannot read property '$valid' of undefined