普通网友 2015-04-07 02:55
浏览 66
已采纳

如何在Golang Revel框架中使用会话

I use the golang web framework as my web framework. But the session doesn`t use. the code I write as follow :

package controllers 

import (
    "fmt"
    "net/http"
    "strconv"

    "GoRBAC/app/base"
    "GoRBAC/app/models"

    r "github.com/revel/revel"
)

type App struct {
    *r.Controller
}

// 首页
func (this App) Index() r.Result {
    userDao := models.NewUserDao()
    user, err := userDao.QueryById(1)
    if err != nil {
        fmt.Println(err)
    }
    fmt.Println(user)
    return this.Render()
}

// 跳转至登录页面
func (this App) ToLogin() r.Result {
    return this.RenderTemplate("App/login.html")
}

func (this App) Login() r.Result {

    username := this.Params.Get("username")
    password := this.Params.Get("password")
    securityCode := this.Params.Get("securityCode")

    fmt.Println(this.Session["securityCode"])
    fmt.Println(username)
    fmt.Println(password)
    fmt.Println(securityCode)

    if securityCode != this.Session["securityCode"] {
        return this.RenderText("error securityCode")
    } else {
        userDao := models.NewUserDao()
        user, err := userDao.QueryByUsername(username)
        if err != nil || user == nil {
            return this.RenderText("username not exsit")
        } else if user.Password != password {
            return this.RenderText("error password")
        } else {
            delete(this.Session, "securityCode")
            this.RenderText("ok")
        }
    }
    return this.RenderText("ok")
}

// 获取验证码图片
func (this App) GetSecurityCode(timestamp int64) r.Result {
    // 时间戳参数,第一次加载为1,后续加载为当前的时间戳,可以用来验证客户端刷新频率
    // 如:刷新频率过高,直接限制当前客户端等
    fmt.Println("GetSecurityCode", timestamp)

    d := make([]byte, 4)
    s := base.NewLen(4)
    ss := ""
    d = []byte(s)

    for v := range d {
        d[v] %= 10
        ss += strconv.FormatInt(int64(d[v]), 32)
    }

    // 将验证码字符串存入到session
    this.Session["securityCode"] = ss
    this.Session.SetNoExpiration()

    fmt.Println(this.Session["securityCode"])
    fmt.Println(ss)

    this.Response.Status = http.StatusOK
    this.Response.ContentType = "image/png"

    base.NewImage(d, 100, 40).WriteTo(this.Response.Out)

    return this.Render()
}

I set the securityCode value in session in the method GetSecurityCode() , this method use to generate the security Code for login verify

I use the the securityCode value in the method Login(). But I get nothing for the value

Anyone who can help me , how can I fix this problem ?

thanks !!

  • 写回答

2条回答 默认 最新

  • douan1893 2015-04-07 09:59
    关注

    I wonder why was your absolutely valid question downvoted. The problem you have described is known. Here is a related GH issue: https://github.com/revel/revel/issues/792

    Temporary workaround would be avoiding to write directly to c.Response.Out. Instead use a buffer and then return it using RenderText:

    this.Response.Status = http.StatusOK
    this.Response.ContentType = "image/png"
    
    var buffer bytes.Buffer
    base.NewImage(d, 100, 40).WriteTo(&buffer)
    
    return this.RenderText(buffer.String())
    

    Or alternatively modify your GetSecurityCode so you don't need Session there.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000