gpt4 book ai didi

html - TH的AngularJS ng-repeat组

转载 作者:搜寻专家 更新时间:2023-10-31 08:10:33 25 4
gpt4 key购买 nike

我是 AngularJS 的新程序员,在尝试为表格实现特定模板时遇到问题。我想实现下表,但找不到如何实现:

<!DOCTYPE HTML>
<html >
<head>
<title></title>
</head>
<body >
<table border="1" width="50%" cellspacing="0" cellpadding="3">
<tbody>
<tr>
<th colspan="33">XXXXXXXXXXXXXXXXXXXXXXX</th>
</tr>
<tr>
<th rowspan="2">&nbsp;</th>
<th colspan="2">P1</th>
<th colspan="2">P2</th>
<th colspan="2">P3</th>
</tr>
<tr >
<th >INFO1</th>
<th >INFO2</th>
<th >INFO1</th>
<th >INFO2</th>
<th >INFO1</th>
<th >INFO2</th>
</tr>
</tbody>
</table
</body>
</html>

我在 AngularJS 中有以下代码,但是我不能重复,因为没有包装的 html 元素:

    <!DOCTYPE HTML>
<html ng-app="myApp">
<head>
<title></title>
<script src="js/angular.js"></script>
<script>
var app = angular.module('myApp', []);
app.controller("myCTL",['$scope',function($scope){
$scope.datas=[{id:'1', name:'P1',pct:'10'},{id:'2', name:'P2',pct:'70'},{id:'3', name:'P3',pct:'66'}]
}])
</script>

</head>
<body ng-controller="myCTL">
<table border="1" width="50%" cellspacing="0" cellpadding="3">
<tbody>
<tr>
<th colspan="33">XXXXXXXXXXXXXXXXXXXXXXX</th>
</tr>
<tr>
<th rowspan="2">&nbsp;</th>
<th colspan="2" ng-repeat="data in datas">{{data.name}}</th>
</tr>

<tr>

ng-repeat ="data in datas" [START]
<th >INFO1</th>
<th >INFO2</th>
ng-repeat [END]
</tr>
</tbody>
</table

</body>
</html>

如果有人知道如何解决这个问题,将不胜感激。非常感谢。

最佳答案

使用ng-repeat-start and ng-repeat-end :

          <tr>
<th ng-repeat-start ="data in datas">INFO1</th>
<th ng-repeat-end>INFO2</th>
</tr>

关于html - TH的AngularJS ng-repeat组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26937581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com