mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-05 00:40:24 +08:00
27 lines
406 B
Go
27 lines
406 B
Go
|
|
package stringx
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"mayfly-go/pkg/utils/collx"
|
||
|
|
"strings"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestTemplateParse(t *testing.T) {
|
||
|
|
tmpl := `
|
||
|
|
{{if gt .cpu 10*5}}
|
||
|
|
当前服务器[{{.asset.host}}]cpu使用率为{{.cpu}}
|
||
|
|
{{end}}
|
||
|
|
`
|
||
|
|
vars := collx.M{
|
||
|
|
"cpu": 60,
|
||
|
|
"asset": collx.M{
|
||
|
|
"host": "localhost:121",
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
res, _ := TemplateParse(tmpl, vars)
|
||
|
|
res2 := strings.TrimSpace(res)
|
||
|
|
fmt.Println(res2)
|
||
|
|
}
|