91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

beego框架之cookie與session

發布時間:2020-07-20 21:58:14 來源:網絡 閱讀:930 作者:梁十八 欄目:編程語言

this.Ctx.SetCookie("name", name, maxage, "/")

this.Ctx.SetCookie("pwd", Md5([]byte(pwd)), maxage, "/")

this.Ctx.GetCookie

cookie例子:

package controllers

import (
   "github.com/astaxie/beego"
   "log"
)

type TestLoginController struct {
   beego.Controller
}

func (c *TestLoginController) Login() {
   //獲取cookie
   name := c.Ctx.GetCookie("name")
   password := c.Ctx.GetCookie("password")
   //只是簡單演示,并不嚴謹
   if name != "" {
      c.Ctx.WriteString("Username:" + name + " Password:" + password)
   }else{
      c.Ctx.WriteString(`
         <html>
            <form action="http://127.0.0.1:8080/test_login" method="post">
               <input type="text" name="Username">
               <input type="password" name="Password">
               <input type="submit" value="提交">
            </form>
         </html>
      `)
   }
}

type the_user struct {
   Username string
   Password string
}

func (c *TestLoginController) Post() {
   u := the_user{}
   if err := c.ParseForm(&u); err != nil {
      log.Fatal(err)
   }

   c.Ctx.SetCookie("name", u.Username, 100, "/")
   c.Ctx.SetCookie("password", u.Password, 100, "/")
   c.Ctx.WriteString("Username:" + u.Username + " Password:" + u.Password)

}




beego 內置了 session 模塊,目前 session 模塊支持的后端引擎包括 memory、cookie、file、mysqlredis、couchbase、memcache、postgres,用戶也可以根據相應的 interface 實現自己的引擎。

beego 中使用 session 相當方便,只要在 main 入口函數中設置如下:

beego框架之cookie與session

或者通過配置文件配置如下:

beego框架之cookie與session

session 有幾個方便的方法:

beego框架之cookie與session

session例子:

c.SetSession("loginuser", "adminuser")
fmt.Println("當前的session:")
fmt.Println(c.CruSession)
//刪除指定的session   
c.DelSession("loginuser")
//銷毀全部的session
c.DestroySession()
islogin=true
fmt.Println("當前的session:")
fmt.Println(c.CruSession)
     
c.SetSession("name", "zhangsan")
//注意:要能c.Ctx.WriteString(name),就要讓它符合輸出的類型
name := fmt.Sprintf("%v", c.GetSession("name"))
c.Ctx.WriteString(name)

beego.BConfig.WebConfig.Session.SessionOn = true設置后不能進行SetSession等操作,要用上面的方法

        



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

山西省| 闽清县| 新平| 蓝田县| 聂荣县| 灵武市| 同德县| 盐津县| 丹江口市| 长岛县| 于田县| 黄平县| 白山市| 巧家县| 乌兰浩特市| 平安县| 建平县| 芜湖市| 六枝特区| 马公市| 呼伦贝尔市| 城口县| 西和县| 天镇县| 木里| 巴彦淖尔市| 长沙市| 沂源县| 漯河市| 庐江县| 泰州市| 天津市| 神木县| 壤塘县| 阜宁县| 丰台区| 鹿邑县| 乌兰察布市| 松原市| 武冈市| 花莲市|