使用angularJS中的ng-repeat将数据填充到表中

时间:2017-09-08 09:57:37

标签: angularjs angularjs-ng-repeat population

我必须在td部分使用ng-repeat将数据填充到表中,如果值为数字,则文本应该对齐,如果它是文本或字母数字,它应该在td的左边。

1 个答案:

答案 0 :(得分:0)

以下是符合您要求的示例。 的 HTML

(?-1)

<强>控制器

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<div 
     ng-app="myApp" 
     ng-controller="myCtrl">
  <table style="border:1px solid black">
  <tr ng-repeat="x in sectionUndecoratedList" style="border:1px solid black">
    <td ng-class="x.isNumber ? 'center':'left'">{{ x.activites }}</td>
  </tr>
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script>
</table>
</div>
<style>
  table, th , td {
  border: 1px solid grey;
  border-collapse: collapse;
  padding: 5px;
}
  .center {
    text-align: center
  }
  .left {
    text-align: left
  }

 </style>
</body>
</html>

分享工作演示以供参考http://jsbin.com/robovoperu/edit?html,js,console,output