本文整理汇总了Golang中github.com/caixw/lib/go/session.Instance.StartSession方法的典型用法代码示例。如果您正苦于以下问题:Golang Instance.StartSession方法的具体用法?Golang Instance.StartSession怎么用?Golang Instance.StartSession使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/caixw/lib/go/session.Instance
的用法示例。
在下文中一共展示了Instance.StartSession方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: testSession
func testSession(a *assert.Assertion, inst *sess.Instance, w http.ResponseWriter, r *http.Request) {
// 获取session接口实例
sess, err := inst.StartSession(w, r)
a.NotError(err)
a.NotNil(sess)
// 设置值
sess.Set("uid", 1)
uid, found := sess.Get("uid")
a.True(found)
a.Equal(uid, 1)
// 不存在的值
username := sess.MustGet("username", "abc")
a.Equal(username, "abc")
// 添加值
sess.Set("username", "caixw")
username = sess.MustGet("username", "abc")
a.Equal(username, "caixw")
// 修改值
sess.Set("uid", "2")
uid, found = sess.Get("uid")
a.True(found)
a.Equal(uid, "2")
}
示例2: testSession2
// 测试cookie能否正常使用
func testSession2(a *assert.Assertion, inst *sess.Instance, w http.ResponseWriter, r *http.Request) {
sess, err := inst.StartSession(w, r)
a.NotError(err)
a.NotNil(sess)
uid, found := sess.Get("uid")
a.True(found)
a.Equal(uid, "2")
}
示例3: freeSession2
// 测试freeSession之后,值是否被清空
func freeSession2(a *assert.Assertion, inst *sess.Instance, w http.ResponseWriter, r *http.Request) {
sess, err := inst.StartSession(w, r)
a.NotError(err)
a.NotNil(sess)
defer func() {
a.NotError(sess.Release())
}()
uid, found := sess.Get("uid")
a.False(found)
a.Equal(uid, nil)
}