我试过了
<div class="row">
<table border='2'>
<tr>
<th ng-repeat="o in callarr">{{o.callarr}}</th>
</tr>
//html table <td ng-repeat="x in makeCall() track by $index">This is column #{{$index + 1}}</td> </tr> <table>
我想在angularjs中绘制一个表,在文本框中给出指定的列数。假设输入是6,6列应该自动绘制到表....行数是固定的..plz帮助我。
答案 0 :(得分:0)
这应该让你开始:
<element ng-repeat="x in range(numCols) track by $index">This is column #{{$index + 1}}</element>