Pytania otagowane jako angularjs-forms

9
Czy mogę uzyskać dostęp do formularza w kontrolerze?
Obecnie używam następujących. $scope.$$childHead.customerForm[firstName], więc: <form name="customerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> Ale to działa tylko w Chrome. Teraz spróbowałem następujących rzeczy: $scope.editCustomerForm[firstName], więc: <form name="customerForm" ng-model="editCustomerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> Co nie działa. Zauważ, że mój formularz znajduje się wewnątrz …
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.