beego
qq_27664967
这个作者很懒,什么都没留下…
展开
-
golang-jwt
golang-jwt安装go get -u github.com/golang-jwt/jwt使用package **import ( "fmt" "github.com/golang-jwt/jwt" "log" "time")//自定义存储的信息type CustomerInfo struct { Name string}type CustomClaimsExample struct { *jwt.StandardClaims TokenType string原创 2021-07-15 13:39:06 · 441 阅读 · 0 评论 -
beego跨域
beego跨域import( "github.com/astaxie/beego/plugins/cors")func main() { //InsertFilter是提供一个过滤函数 beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{ //允许访问所有源 AllowAllOrigins: true, //可选参数"GET", "POST", "PUT", "D原创 2021-07-14 02:03:33 · 131 阅读 · 0 评论 -
beego上下文模块
beego上下文模块context对象方法Redirect(status int, localurl string) 无返回值Abort(status int, body string) 无返回值WriteString(content string) 无返回值GetCookie(key string) stringSetCookie(name string, value string, others …interface{}) 无返回值Input 对象Outpu转载 2021-07-14 01:48:23 · 231 阅读 · 0 评论 -
beego中常用的获取请求数据总结
beego请求数据获取请求数据Get、Post等参数,beego会自动解析,可以通过如下方式获取到相应的数据:GetString(key string) stringGetStrings(key string) []stringGetInt(key string) (int64, error)GetBool(key string) (bool, error)GetFloat(key string) (float64, error)如果不是上述数据类型,需要获取到值之后,在调用标准库里面的函原创 2021-07-14 01:29:29 · 916 阅读 · 0 评论