Go 語言中的 collect 使用

994914376發表於2020-04-10

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 協議》,轉載必須註明作者和本文連結

相關文章