Golang将map数组按照指定字段排序

复制代码
//获取用户获取的优惠券列表
func GetCouponList(c *gin.Context) {
    defer func() {
        if r := recover(); r != nil {
            util.LogStack(r.(error))
            c.JSON(RequestSuccess, gin.H{"status": SysError, "data": r, "err_msg": "服务器内部错误"})
            return
        }
    }()

    var (
        loginToken         string
        luck_draw_res   []int
        getErr            error
        user_id         int
        params             map[string]string
    )

    coupon_list := make([]map[string]interface{}, 0)
    if luck_draw_res != nil {
        for _, val := range luck_draw_res {
            item := coupon_map[val]
            item["id"] = strconv.Itoa(val)
            title := item["title"]
            item["quota"] = substr(title)
            coupon_list = append(coupon_list, item)
        }
               fmt.Println(coupon_list) //
//[map[desc:15w元以上可用 id:53 quota:5888 title:5888元] map[desc:20w以上可用 id:52 quota:7888 title:7888元]]
        Sort("quota", coupon_list)  //排序,第一个参数是指定的key
    }

    c.JSON(http.StatusOK, gin.H{"status": StatusSuccess, "data": coupon_list, "msg": "Success"}); return
}

//截取字符串
func substr(title interface{}) int {
    title_pro := title.(string)

    rs := []rune(title_pro)
    str := string(rs[0:len(rs)-1])
    val,_ := strconv.Atoi(str)
    return val  //这里截取后
}




//排序  start
type MapsSort struct {
    Key     string
    MapList []map[string]interface{}
}

func (m *MapsSort) Len() int {
    return len(m.MapList)
}

func (m *MapsSort) Less(i, j int) bool {
    return m.MapList[i][m.Key].(int) > m.MapList[j][m.Key].(int)
}

func (m *MapsSort) Swap(i, j int) {
    m.MapList[i], m.MapList[j] = m.MapList[j], m.MapList[i]
}

func Sort(key string, maps []map[string]interface{}) []map[string]interface{} {
    mapsSort := MapsSort{}
    mapsSort.Key = key
    mapsSort.MapList = maps
    sort.Sort(&mapsSort)

    return mapsSort.MapList
}

//排序 end    
复制代码

 

posted @   温柔的风  阅读(2025)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示