作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想用 ng-repeat 来显示数据表
以这样的 JSON 格式提供
{"name":"Aruba","code":"ABW","1960":54208,"1961":55435},
{"name":"Afghanistan","code":"AFG","1960":8774440,"1961":8953544}
<table>
<tr>
<td>Country name</td>
<td>1960 population</td>
<td>1970 population</td>
<td>1980 population</td>
<td>1990 population</td>
<td>2000 population</td>
<td>2010 population</td>
<td>Percentage growth between 1960 and 2010</td>
</tr>
<tr ng-repeat="country in countries">
<td>{{ country.name }}</td>
<td>{{ country.1961 }}</td>
</tr>
</table>
<td>{{ country.1961 }}</td>
一切正常。
最佳答案
{{country.1961}}
对我来说很好用,检查这个 JSFiddle ,
但最好你可以使用 括号表示法 而不是点符号时
<table border='1'>
<tr>
<td>Country name</td>
<td>1960 population</td>
<td>1970 population</td>
<td>1980 population</td>
<td>1990 population</td>
<td>2000 population</td>
<td>2010 population</td>
<td>Percentage growth between 1960 and 2010</td>
</tr>
<tr ng-repeat="country in countries">
<td>{{ country.name }}</td>
<td>{{ country['1961'] }}</td>
</tr>
</table>
关于json - 如何在以数字为键的 JSON 数据上使用 ng-repeat?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32394996/
我是一名优秀的程序员,十分优秀!