this.DestroySession()
This commit is contained in:
astaxie 2013-08-10 23:58:25 +08:00
parent bbef213155
commit 9631c663d5
1 changed files with 4 additions and 0 deletions

View File

@ -342,6 +342,10 @@ func (c *Controller) DelSession(name interface{}) {
c.CruSession.Delete(name)
}
func (c *Controller) DestroySession() {
GlobalSessions.SessionDestroy(c.Ctx.ResponseWriter, c.Ctx.Request)
}
func (c *Controller) IsAjax() bool {
return (c.Ctx.Request.Header.Get("HTTP_X_REQUESTED_WITH") == "XMLHttpRequest")
}