这是一个创建于 3978 天前的主题,其中的信息可能已经有所发展或是发生改变。
最近在研究如果template中获取两个自定义函数之间的内容。比如;
```
<html>
<head></head>
<body>
{{ob_start "script"}}
function test() {
console.log("hello, World!");
}
test();
{{ob_end}}
</body>
</html>
```
我可以在 ob_end 这个函数中获取到中间夹的JS代码。
尝试了各种方式后,得到一个比较靠谱的方法。就算抛砖引玉了
```
package main
import (
"bytes"
"fmt"
"html/template"
)
func main() {
buf := bytes.NewBufferString("")
var o_pos int
var funcMap = map[string]interface{}{
"ob_start": func() string {
o_pos = buf.Len()
return ""
},
"ob_end": func() string {
byte_buf := buf.Bytes()
//seek -n
buf.Truncate(o_pos)
bf := bytes.NewBuffer(byte_buf[o_pos:])
//get it
fmt.Println(bf)
return bf.String()
},
}
tmpl := template.Must(template.New(`template`).Funcs(funcMap).Parse(`<html>{{ob_start}}fdsafdaafa中国{{ob_end}}</html>`))
tmpl.Execute(buf, "")
fmt.Println(buf)
}
```