0

我的 javascript 中有一个名为“animals”的数组:

var animals = ["dog", "cat", "horse", "cow"];

我的html是:

<p>{{animals}}</p>

目前它显示如下:

["dog", "cat", "horse", "cow"]

我希望它像这样显示:

dog
cat
horse
cow

我查看了 ng-list 指令的官方 Angular 文档,但仍在摸不着头脑。可能有另一个(更好的)指令吗?

建议表示赞赏。

4

1 回答 1

8

使用 ng 重复:

<p ng-repeat="animal in animals">{{animal}}</p>

或者

<ul>
    <li ng-repeat="animal in animals">{{animal}}</li>
</ul>
于 2015-03-18T21:04:06.963 回答