我正在使用AngularJS并尝试创建一个表单,我可以动态添加新的输入,类似于这个小提琴:http://jsfiddle.net/V4BqE/(下面的主要HTML,小提琴中的工作代码)。
<div ng-app="myApp" ng-controller="MyCtrl">
<div add-input>
<button>add input</button>
</div>
</div>
我希望能够为我的表单使用HTML模板,因为我添加的输入大约是300行。我的问题是我无法弄清楚如何在模板中使用时索引包含数据的范围变量。我试图在plnkr http://plnkr.co/edit/4zeaFoDeX0sGTuBMCQP2?p=info上创建我自己的上述代码的修改版本。但是,当我单击按钮时,不会出现任何表单元素。
在线(plnkr)我的template.html找不到404,但我认为这只是一个限制因素。在我的使用Python HttpServer的计算机上,使用Error: [$parse:syntax]
方法时,$templateRequest
获得TypeError: Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node'.
,$http.get
获得<form method="post" action="index.php" enctype="multipart/form-data"></form>
。
有关使索引范围变量数组与外部html文件一起使用的任何建议吗?
谢谢,JR
编辑:更新plnkr链接
答案 0 :(得分:0)
你要做的不需要指令(使用基本的angularjs工具实际上很简单)
<强> HTML 强>
TreePanel
<强> JS 强>
<body>
<div class="container" ng-app="myApp" ng-controller="MyCtrl">
<button class="btn btn-primary" type="button" ng-click="addPhoneInput()">add input</button>
<form>
<div ng-repeat="item in telephoneNumbers">
<hr>
<input type="text" ng-model="item.phone">
</div>
</form>
<hr>
<div class="well">
<h4>Phone Numbers,</h4>
<p ng-repeat="item in telephoneNumbers">{{item.phone}}</p>
</div>
</div>
</body>
<强>电话number.template.html 强>
var app = angular.module('myApp', []);
app.controller('MyCtrl', ['$scope', function($scope) {
// Define $scope.telephone as an array
$scope.telephoneNumbers = [];
$scope.addPhoneInput = function() {
$scope.telephoneNumbers.push({});
};
// This is just so you can see the array values changing and working! Check your console as you're typing in the inputs :)
$scope.$watch('telephoneNumbers', function(value) {
console.log(value);
}, true);
}]);
<强> HTML 强>
<div>
<hr>
<input type="text" ng-model="ngModel" >
</div>
<强> JS 强>
<body>
<div class="container" ng-app="myApp" ng-controller="MyCtrl">
<button class="btn btn-primary" type="button" ng-click="addPhoneInput()">add input</button>
<form>
<phone-number ng-repeat="item in telephoneNumbers" ng-model="item.phone"></phone-number>
</form>
<hr>
<div class="well">
<h4>Phone Numbers,</h4>
<p ng-repeat="item in telephoneNumbers">{{item.phone}}</p>
</div>
</div>
</body>