0
我正在做一個嵌套行的表。將行附加到嵌套行問題?
問題是,當我將子行附加到父行時,所有其他父行也附加了子行。
使用功能:
$scope.templates=[{src:'template'}];
$scope.include = function(templateURI) {
$scope.templates.push({src:templateURI});
}
添加行:
<button class="btn btn-default btn-sm ng-scope" ng-click="include('rowInRow.html')">
<i class="glyphicon glyphicon-upload"></i>
</button>
顯示模板:
<div ng-repeat="template in templates">
<div ng-include="template.src">My template will be visible here</div>
</div>
有人可以給我一個提示? 我試圖自己做,但我沒有找到我需要的。
倘使這是直觀的在做什麼演示和預期的結果是什麼 – charlietfl