angularjs ng-init 可以有多个表达式吗
2个回答
展开全部
angularjs ng-init 可以有多个表达式
angularjs ng-repeat可以含有表达式track by.
<div ng-repeat="links in slides">
<div ng-repeat="link in links track by $index">{{link.name}}</div>
</div>
Error: [ngRepeat:dupes]这个出错提示具体到题主的情况,意思是指数组中有2个以上的相同数字。ngRepeat不允许collection中存在两个相同Id的对象
For example: item in items is equivalent to item in items track by $id(item). This implies that the DOM elements will be associated by item identity in the array.
对于数字对象来说,它的id就是它自身的值,因此,数组中是不允许存在两个相同的数字的。
为了规避这个错误,需要定义自己的track by表达式。
例如:item
in items track by item.id或者item in items track by fnCustomId(item)。
也可以,直接拿循环的索引变量$index来用item。
angularjs ng-repeat可以含有表达式track by.
<div ng-repeat="links in slides">
<div ng-repeat="link in links track by $index">{{link.name}}</div>
</div>
Error: [ngRepeat:dupes]这个出错提示具体到题主的情况,意思是指数组中有2个以上的相同数字。ngRepeat不允许collection中存在两个相同Id的对象
For example: item in items is equivalent to item in items track by $id(item). This implies that the DOM elements will be associated by item identity in the array.
对于数字对象来说,它的id就是它自身的值,因此,数组中是不允许存在两个相同的数字的。
为了规避这个错误,需要定义自己的track by表达式。
例如:item
in items track by item.id或者item in items track by fnCustomId(item)。
也可以,直接拿循环的索引变量$index来用item。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以 用分号隔开
<div ng-init="greeting='Hello'; person='World'">
比如这样
<div ng-init="greeting='Hello'; person='World'">
比如这样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询