我需要创建一个表格结构,其中行中的列数不应超过页面的宽度。如果行中的列数不能适合该行,则它们应向下移动到同一行标题下的下一行。我在AngularJS中编写了这段代码,但它没有用。
<div class="row" ng-repeat='(key,val) in response'>
<h4>{{key}}</h4>
<div class="col-xs-1" ng-repeat='(nestedKey,nestedVal) in val'>
<a ng-href='{{function1(nestedVal)}}' target="_blank">{{nestedKey}}
<br>
<img id="graph" src='{{function2(nestedVal)}}' class="img-rounded"/>
</a>
</div>
</div>
我得到的错误:
TypeError:无法读取属性&#39; top&#39;未定义的