go 不能在模板 Execute 的参数中使用输出(类型字符串)作为类型 io.Writer

在“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 错误)


临摹微笑
浏览 169回答 2
2回答

吃鸡游戏

您需要按如下方式写入缓冲区,因为它实现了接口io.Writer。它基本上缺少一个 Write 方法,您可以构建自己的方法,但缓冲区更直接:buf := new(bytes.Buffer)t := template.Must(template.New("html table").Parse(tmplhtml))err = t.Execute(buf, Files)

翻过高山走不出你

您还可以使用strings.Builder:package mainimport (   "strings"   "text/template")func main() {   t, err := new(template.Template).Parse("hello {{.}}")   if err != nil {      panic(err)   }   b := new(strings.Builder)   t.Execute(b, "world")   println(b.String())}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go