3

我希望我的 orderBy 评估一个表达式

目前我有:

ng_repeat: "post in posts | orderBy:"up_votes"

我希望它改为按 {{up_votes - down_votes}} 订购

4

1 回答 1

6
ng_repeat: "post in posts | orderBy:'down_votes - up_votes'"

只需使用单引号来包装 orderBy 的表达式

或者您可以向控制器添加一个 voteDiff 函数并执行orderBy:voteDiff

于 2013-07-21T15:35:00.237 回答