1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-12 16:20:39 +00:00

Return nil not empty []string{}

Return nil if config value does not exist or is empty
This commit is contained in:
ysqi
2016-03-03 20:03:23 +08:00
parent 8ff74e71cb
commit 19d921d3f5
7 changed files with 17 additions and 12 deletions

View File

@ -176,7 +176,7 @@ func (c *ConfigContainer) DefaultString(key string, defaultval string) string {
func (c *ConfigContainer) Strings(key string) []string {
v := c.String(key)
if v == "" {
return []string{}
return nil
}
return strings.Split(v, ";")
}
@ -185,7 +185,7 @@ func (c *ConfigContainer) Strings(key string) []string {
// if err != nil return defaltval
func (c *ConfigContainer) DefaultStrings(key string, defaultval []string) []string {
v := c.Strings(key)
if len(v) == 0 {
if v == nil {
return defaultval
}
return v

View File

@ -82,7 +82,7 @@ func TestXML(t *testing.T) {
if xmlconf.String("name") != "astaxie" {
t.Fatal("get name error")
}
if len(xmlconf.Strings("emptystrings")) != 0 {
if xmlconf.Strings("emptystrings") != nil {
t.Fatal("get emtpy strings error")
}
}