Go語言中的collect使用
首先下載 github.com/chenhg5/collection
包
使用方法如下
var name = "王經理"
all := customerAll() //為一個[]map[string]interface{}
a := collection.Collect(all).Pluck("user_name").Filter(func(item, value interface{}) bool {
if value == name {
return true
} else {
return false
}
}).First()
g.Dump(a)
文件地址,裡面挺多操作的
https://godoc.org/github.com/chenhg5/colle...
本作品採用《CC 協議》,轉載必須註明作者和本文連結