คำถามติดแท็ก angular-foundation

9
ฉันสามารถเข้าถึงแบบฟอร์มในคอนโทรลเลอร์ได้หรือไม่?
ฉันกำลังใช้สิ่งต่อไปนี้ $scope.$$childHead.customerForm[firstName], ดังนั้น: <form name="customerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> แต่ใช้งานได้เฉพาะใน Chrome ตอนนี้ฉันพยายามต่อไปนี้: $scope.editCustomerForm[firstName], ดังนั้น: <form name="customerForm" ng-model="editCustomerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> ซึ่งไม่ได้ผล หมายเหตุแบบฟอร์มของฉันอยู่ในแท็บพื้นฐาน ฉันจะเข้าถึงได้firstNameอย่างไร แก้ไข : ดูเหมือนว่าformจะไม่ถูกเพิ่มเข้าไปscopeเมื่ออยู่ในแท็บรากฐาน ใครมีวิธีแก้ปัญหานี้?
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.