Angular orderBy操作顺序

Angular orderBy order of operations

如果我按 2 个或更多参数排序,我无法在 documentation 中找到答案:

<tbody ng-reapet="i in list" | orderBy:['m_status', 'm_couter']>

orderBy 中的顺序是什么? m_statusm_counter会先到orderBy?很难根据2或更多进行测试。

谢谢。

它工作正常,这不是语法或 "how to.." 问题,我的问题是 Angular 如何优先处理 orderBy - ['m_status', 'm_counter'].[=18 中的数组=]

尝试如下

<tbody ng-repeat="i in list | orderBy:['m_status', 'm_couter']">

orderBy 过滤器必须在 ng-repeat 中,如下所示

`ng-repeat="some in somelist |orderBy:'name'"`