在控制器里使用fmt.Println(beego.AppConfig.GetSection("site"))是可以打印出来的
为什么我重新赋值下就不行呢?如下
mpx := beego.AppConfig.GetSection("site")
fmt.Println(mpx)
会报出错误 multiple-value beego.AppConfig.GetSection() in single-value context
谁知道这是为什么啊?
更多评论
没用过beego,但看这个错误,应该有多个返回值,一般是返回 error
查了下代码,的确如此
func (c *ConfigContainer) GetSection(section string) (map[string]string, error) {
#1