mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-11 04:59:21 +08:00
27 lines
516 B
Go
27 lines
516 B
Go
|
/***************************************************
|
||
|
** @Desc : This file for ...
|
||
|
** @Time : 2019/10/26 11:17
|
||
|
** @Author : yuebin
|
||
|
** @File : sort_go
|
||
|
** @Last Modified by : yuebin
|
||
|
** @Last Modified time: 2019/10/26 11:17
|
||
|
** @Software: GoLand
|
||
|
****************************************************/
|
||
|
package utils
|
||
|
|
||
|
import (
|
||
|
"sort"
|
||
|
)
|
||
|
|
||
|
/*
|
||
|
* 对map的key值进行排序
|
||
|
*/
|
||
|
func SortMap(m map[string]string) []string {
|
||
|
var arr []string
|
||
|
for k := range m {
|
||
|
arr = append(arr, k)
|
||
|
}
|
||
|
sort.Strings(arr)
|
||
|
return arr
|
||
|
}
|