蓝天

2024年11月4日 #

go的template示例3

摘要: 改进:保存配置定义的顺序。 实现代码: package main import ( "os" "strings" "text/template" "github.com/stoewer/go-strcase" ) type ConfigItem struct { Key string Value m 阅读全文

posted @ 2024-11-04 19:49 #蓝天 阅读(3) 评论(0) 推荐(0) 编辑

go的template示例2

摘要: 改进:配置类型模板化 实现代码: package main import ( "os" "strings" "text/template" "github.com/stoewer/go-strcase" ) func main() { // 定义模板函数 funcs := template.Func 阅读全文

posted @ 2024-11-04 19:48 #蓝天 阅读(1) 评论(0) 推荐(0) 编辑

go的template示例

摘要: 模板定义: type Config struct { {{- $len := len .DbConfigs -}} {{- $i := 0 -}} {{- range $key, $value := .DbConfigs}} {{title $key}} *DbConfig ` + "`yaml:\ 阅读全文

posted @ 2024-11-04 17:41 #蓝天 阅读(2) 评论(0) 推荐(0) 编辑

导航