将数组显示为 angular 中的列表
Display array as list in angular
我的 javascript 中有一个名为 "animals" 的数组:
var animals = ["dog", "cat", "horse", "cow"];
我的 html 是:
<p>{{animals}}</p>
目前是这样显示的:
["dog", "cat", "horse", "cow"]
我希望它像这样显示:
dog
cat
horse
cow
我已经查看了 ng-list 指令的官方 Angular 文档,但仍然摸不着头脑。也许还有另一个(更好的)指令吗?
不胜感激。
使用 ng-repeat:
<p ng-repeat="animal in animals">{{animal}}</p>
或
<ul>
<li ng-repeat="animal in animals">{{animal}}</li>
</ul>
我的 javascript 中有一个名为 "animals" 的数组:
var animals = ["dog", "cat", "horse", "cow"];
我的 html 是:
<p>{{animals}}</p>
目前是这样显示的:
["dog", "cat", "horse", "cow"]
我希望它像这样显示:
dog
cat
horse
cow
我已经查看了 ng-list 指令的官方 Angular 文档,但仍然摸不着头脑。也许还有另一个(更好的)指令吗?
不胜感激。
使用 ng-repeat:
<p ng-repeat="animal in animals">{{animal}}</p>
或
<ul>
<li ng-repeat="animal in animals">{{animal}}</li>
</ul>