連接:gomodifytags原文連接git
gomodifytags github
是go工具,用來修改/更新struct字段的標籤tag.使用gomodifytags能夠很方便的update/add/delete struct的字段標籤。你能夠很方便的增長新的標籤,更新已經存在的標籤或者移除已經存在的標籤。也容許你增長和移除標籤選項。它的目的在於被編輯器使用,可是也有模式從終端運行它。json
默認按照下劃線標識的tag.安全
安裝:編輯器
go get github.com/fatih/gomodifytags
寫好結構體,以下:工具
type Server struct { Name string Port int EnableLogs bool BaseDomain string Credentials struct{ UserName string Password string } }
在goland終端cd到上面的結構體所在的目錄,執行如下命令:code
gomodifytags -file go_gomodifytags.go -struct Server -add-tags json
默認狀況下,每次改變都會被標準輸出,所以運行這個命令是安全的而且看到運行的結果。若是你想永久有效,執行如下命令:orm
$ gomodifytags -file demo.go -struct Server -add-tags json -w
能夠同時添加多個tag:xml
以下指令會同時添加json和xml標籤:rem
gomodifytags -file demo.go -struct Server -add-tags json,xml
若是要使用駝峯標識,使用以下命令:
gomodifytags -file demo.go -struct Server -add-tags json,xml -transform camelcase
注意:若是使用了永久模式的tag:
gomodifytags -file demo.go -struct Server -add-tags json -w
那麼後面再設置爲駝峯標識就會無效了。
能夠爲每一個字段設置靜態值:
gomodifytags -file demo.go -struct Server -add-tags json,validate:gt=1,scope:read-only
爲每一個字段增長tag可選項:
gomodifytags -file demo.go -struct Server -add-tags json -add-options json=omitempty
注意,若是tag已經存在了,就不必再用 -add-tags
移除標籤和可選項
要移除xml標籤,使用以下指令:
gomodifytags -file demo.go -struct Server -remove-tags xml
同時移除多個標籤:
gomodifytags -file demo.go -struct Server -remove-tags xml,json
一次性移除全部的標籤:
gomodifytags -file demo.go -struct Server -clear-tags
移除標籤可選項:
gomodifytags -file demo.go -struct Server -remove-options json=omitempty
同時移除多個標籤可選項:
gomodifytags -file demo.go -struct Server -remove-options json=omitempty,xml=cdata
移除全部的標籤可選項:
gomodifytags -file demo.go -struct Server -clear-options
基於line的標籤改變
移除某些line的標籤:
gomodifytags -file demo.go -line 8,11 -clear-tags xml
在特定的某些行增長tag:(在第5行-第7行增長bson標籤)
gomodifytags -file demo.go -line 5,7 -add-tags bson