Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您可以尝试连接要排序的字段,然后使它们不可见-因此您有一个不可见的排序键。
fields如果您希望 AngularJS 先按数字排序,然后按文本排序,那么一种简单的方法是添加另一个条目:
fields
{ label: 'Number - Text', key: ['number', 'text'] }
表达式orderBy可以是一个数组:
数组:函数或字符串谓词的数组。数组中的第一个谓词用于排序,但当两个项目相等时,使用下一个谓词。