angularJs如何实现li只展示前4个数据,想用ng-repeat实现.但是ng-repeat默认会遍历所有的数据,我希望只列出前4个,有什么方式可以实现呢?
<p ng-repeat="item in items | limitTo: 4"> <p>....</p> </p>