beego如何重定向

beego开发web项目,遇到重新登录需要重定向到登录的问题

直接看 

github.com/astaxie/beego/context.Context.go 文件 Redirect方法

代码实现方式  

ctx.Redirect(302, redirectURL)

// Redirect does redirection to localurl with http header status code.
func (ctx *Context) Redirect(status int, localurl string) {
   http.Redirect(ctx.ResponseWriter, ctx.Request, localurl, status)
}

下面方法实现就是,当没有token的时候,就重定向到login.html去了

beego如何重定向_第1张图片


接口源码地址

  beego如何重定向_第2张图片

你可能感兴趣的:(go语言开从零开始记录)