提交 69982c62 编写于 作者: A asta.xie

path default is /

httponly default true
seuce default not set
上级 b405e19f
......@@ -99,15 +99,19 @@ func (output *BeegoOutput) Cookie(name string, value string, others ...interface
}
}
if len(others) > 1 {
fmt.Fprintf(&b, "; Path=%s", sanitizeValue(others[1].(string)))
if len(others[1].(string)) == 0 {
fmt.Fprintf(&b, "; Path=%s", '/')
} else {
fmt.Fprintf(&b, "; Path=%s", sanitizeValue(others[1].(string)))
}
}
if len(others) > 2 {
if len(others) > 2 && len(others[2].(string)) > 0 {
fmt.Fprintf(&b, "; Domain=%s", sanitizeValue(others[2].(string)))
}
if len(others) > 3 {
if len(others) > 3 && others[3].(bool) {
fmt.Fprintf(&b, "; Secure")
}
if len(others) > 4 {
if !(len(others) > 4 && others[4].(bool) == false) {
fmt.Fprintf(&b, "; HttpOnly")
}
output.Context.ResponseWriter.Header().Add("Set-Cookie", b.String())
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册