以下小提琴呈現了3列遞增數字,表示具有不同模板的指令:一個內聯,一個預加載,一個來自外部模板。當你選擇「添加」按鈕的列增量。當添加按鈕將新項目推送到現有數組時,表示帶有外部模板的指令的列似乎會創建一個新數組,然後拋出以下錯誤:添加新數組項目時,重複使用外部模板的angularjs指令無法正確呈現。
TypeError:無法調用null的方法'insertBefore'
任何想法是怎麼回事?
http://jsfiddle.net/jwanga/EaRHD/
angular.module('app',[]).controller('controller', function($scope){
$scope.items = [1,2,3,4,5,6,7,8,9];
$scope.add = function(){
$scope.items.push($scope.items[$scope.items.length - 1]+1);
}
}).directive('item1', function(){
return{
restrict:'E',
replace:true,
scope: {
data: '=data'
},
template:'<li>{{data}}</li>'
}
}).directive('item2', function(){
return{
restrict:'E',
replace:true,
scope: {
data: '=data'
},
templateUrl:'item.html'
}
}).directive('item3', function(){
return{
restrict:'E',
replace:true,
scope: {
data: '=data'
},
templateUrl:'https://s3.amazonaws.com/thedigitalself-public/jsfiddle-EaRHD-template.html'
}
});
我也很好奇! – 2013-02-10 09:58:10
這也解決了我的問題。我想知道爲什麼這也是。 – Jeppebm 2013-07-19 12:55:17