如何从 beego AppConfig 获取值并将其呈现在 HTML 模板中?
How to get values from beego AppConfig and render it in HTML template?
我想获取beego的app.conf中定义的键的值并在html页面中呈现。
根据 http://beego.me/docs/mvc/view/template.md 上的文档,我可以通过在模板中使用配置函数来获取 AppConfig 的值。但是文档中没有示例。
Get the value of AppConfig. {{config configType configKey defaultValue}}. configType must be String, Bool, Int, Int64, Float, or DIY
在尝试了很多方法之后,我得出了这个结论:
<div>{{config config.String config.appname "TestDefaultValue"}}</div>
但我总是出错:
<config>: wrong number of args for config: want 3 got 0
配置模板功能的正确使用方法是什么?
最后我自己解决了这个问题。 config
模板函数接受所有参数作为字符串。
config
模板函数的正确使用方法是:
<div>{{config "String" "appname" "TestDefaultValue"}}</div>
我想获取beego的app.conf中定义的键的值并在html页面中呈现。 根据 http://beego.me/docs/mvc/view/template.md 上的文档,我可以通过在模板中使用配置函数来获取 AppConfig 的值。但是文档中没有示例。
Get the value of AppConfig. {{config configType configKey defaultValue}}. configType must be String, Bool, Int, Int64, Float, or DIY
在尝试了很多方法之后,我得出了这个结论:
<div>{{config config.String config.appname "TestDefaultValue"}}</div>
但我总是出错:
<config>: wrong number of args for config: want 3 got 0
配置模板功能的正确使用方法是什么?
最后我自己解决了这个问题。 config
模板函数接受所有参数作为字符串。
config
模板函数的正确使用方法是:
<div>{{config "String" "appname" "TestDefaultValue"}}</div>