在“go”到os.Stdout 中执行模板(在我的情况下为“tmplhtml”)很容易,但如何将其写入字符串“输出”,以便我以后可以使用"gopkg.in/gomail.v2"?发送邮件中的 html ?
var output string
t := template.Must(template.New("html table").Parse(tmplhtml))
err = t.Execute(output, Files)
m.SetBody("text/html", output) //"gopkg.in/gomail.v2"
构建错误读取“不能在 t.Execute 的参数中使用输出(字符串类型)作为 io.Writer 类型:字符串没有实现 io.Writer(缺少写入方法)”我可以实现 Writer 方法,但它应该返回整数写入( p []byte) (n int, err 错误)
吃鸡游戏
翻过高山走不出你
相关分类