zoukankan      html  css  js  c++  java
  • js 分组数组

    思路:

    1、先将数组按照一定规则排序;

    2、再拆分数组到Map中,按Key分类;

    3、再从Map中遍历取出要显示的内容;

    sortBroadList: function (broadcastList) {
                var broadList = broadcastList.sort(function (d1, d2) {
                    var d1ChatAt = (d1.first_pinyin ? d1.first_pinyin.toString().charCodeAt(0) : 91);
                    var d2ChatAt = (d2.first_pinyin ? d2.first_pinyin.toString().charCodeAt(0) : 91);
                    return d2ChatAt - d1ChatAt;
                }).reverse();
    
                var result = new Map();
                for (var item of broadList) {
                    var pinyin = item.first_pinyin ? item.first_pinyin : '#';
                    if (result.get(pinyin)) {
                        result.get(pinyin).values.push(item);
                    } else {
                        result.set(pinyin, {key: pinyin, values: [item]});
                    }
                }
    
                uc.util.LogUtil.info('ContactManager', 'sortBroadList', 'sort broadcastlist result:', {
                    broadList: broadList
                });
                return result;
            },
    
            loadBroadcastItem: function (broadcastList) {
                var parentPanel = _this.getLatestClickedContactsPanel();
                var ul = parentPanel.find('.broadcast-parent');
                ul.empty();
                var broadList = _this.sortBroadList(broadcastList);
                broadList.forEach(function (item) {
                    var hasAlphabetical = ul.find(`li[alphabetical-key="${item.key}"]`);
                    if (!hasAlphabetical.length) {
                        ul.append(_this.getAlphabetical(item.key));
                    }
                    for (var broadcast of item.values) {
                        ul.append(_this.getBroadcastTpl(broadcast));
                        _this.broadcastCache.addContact(broadcast.board_id, broadcast);
                    }
                });
            },

    结果:

  • 相关阅读:
    poj1466
    vc剪贴板
    【转帖】BCGControlBar使用心得如何捕获Workspace bar类上的树控件的消息
    Windows API一日一练
    BCG 使用CBCGPToolbarFontSizeCombo 时下拉框无内容
    VB API教程 王国荣
    用API 现成的函数处理工程退出时的文件保存
    VC 剪贴板操作
    BCG中使用状态栏显示状态信息
    界面库
  • 原文地址:https://www.cnblogs.com/307914070/p/6226532.html
Copyright © 2011-2022 走看看