📌  相关文章
📜  在同一次单击时按升序和降序对对象数组进行排序 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:21.761000             🧑  作者: Mango

代码示例1
self.isAscending = true;

self.sortTitle = function () {
 if(self.isAscending){ 
   self.arr= self.arr.sort((a, b) => (a.title > b.title) ? 1 : -1);
 }else{
   self.arr= self.arr.sort((a, b) => (a.title > b.title) ? -1 : 1);
 }
 self.isAscending = !self.isAscending;
}