1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 08:50:56 +00:00

Support return middle level value

fix multilevel yaml config can't correct return middle level value bug
This commit is contained in:
guomao545 2018-07-27 15:33:24 +08:00 committed by GitHub
parent a09bafbf2a
commit 39fc30b8b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -290,12 +290,15 @@ func (c *ConfigContainer) getData(key string) (interface{}, error) {
keys := strings.Split(key, ".") keys := strings.Split(key, ".")
tmpData := c.data tmpData := c.data
for _, k := range keys { for idx, k := range keys {
if v, ok := tmpData[k]; ok { if v, ok := tmpData[k]; ok {
switch v.(type) { switch v.(type) {
case map[string]interface{}: case map[string]interface{}:
{ {
tmpData = v.(map[string]interface{}) tmpData = v.(map[string]interface{})
if idx == len(keys) - 1 {
return tmpData, nil
}
} }
default: default:
{ {