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

Merge pull request #1376 from JessonChan/develop

static file code refactor and bug fixed
This commit is contained in:
astaxie
2015-11-08 23:21:16 +08:00
4 changed files with 109 additions and 110 deletions

View File

@ -103,22 +103,10 @@ func (output *BeegoOutput) Cookie(name string, value string, others ...interface
//fix cookie not work in IE
if len(others) > 0 {
switch v := others[0].(type) {
case int:
case int, int32, int64:
if v > 0 {
fmt.Fprintf(&b, "; Expires=%s; Max-Age=%d", time.Now().Add(time.Duration(v)*time.Second).UTC().Format(time.RFC1123), v)
} else if v < 0 {
fmt.Fprintf(&b, "; Max-Age=0")
}
case int64:
if v > 0 {
fmt.Fprintf(&b, "; Expires=%s; Max-Age=%d", time.Now().Add(time.Duration(v)*time.Second).UTC().Format(time.RFC1123), v)
} else if v < 0 {
fmt.Fprintf(&b, "; Max-Age=0")
}
case int32:
if v > 0 {
fmt.Fprintf(&b, "; Expires=%s; Max-Age=%d", time.Now().Add(time.Duration(v)*time.Second).UTC().Format(time.RFC1123), v)
} else if v < 0 {
} else if v <= 0 {
fmt.Fprintf(&b, "; Max-Age=0")
}
}