golang template 使用

Go 官方库提供了两个模板库: text/template 和 html/template。这两个库类似,只不过 html/template对html格式做了特别的处理,当需要输出html格式的代码时需要使用html/template。

简单使用

package main

import (
	"os"
	"text/template"
)

type Student struct {
   
	Name string
}

func main(

你可能感兴趣的:(go/python,开发技巧,golang,前端,开发语言)