beegoTplFuncMap["map_get"] = MapGet
(1)定义函数 func Test()string{ return"hello"} (2)后端将函数传给模板 func (t*TemplateController) Get() { t.Data["func_test"] = Test -->传函数名即可,不用() t.TplName="test_template.html"} (3)模板里使用call调用函数 {{call .func_test}} (2)示例二:调用需要传参的函数 (1)定义函...