热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Beego下如何使用captcha生成验证码

Beego下如何使用captcha生成验证码,Go语言社区,Golang程序员人脉社



2019独角兽企业重金招聘Python工程师标准>>> hot3.png



Beego框架真的很贴心,默认有captcha这个验证码插件。在utils/captcha下面

使用方法

import(
    "github.com/astaxie/beego/cache"
  "github.com/astaxie/beego/utils/captcha"

var cpt *captcha.Captcha
func init() {
    store := cache.NewMemoryCache()
    cpt = captcha.NewWithFilter("/captcha/", store) //一定要写在构造函数里面,要不然第一次打开页面有可能是X
}

在模板里面写上   


{{create_captcha}}

就ok了,最贴心的是居然连onclick事件也已经做在了里面,方便。

还有判断也已经写好了,只要在post里面写上

if !cpt.VerifyReq(this.Ctx.Request) {
//你的代码
}

默认的验证码是6位,200px宽,这个是可以自己设置的

cpt是一个结构体:

// Captcha struct
type Captcha struct {
// beego cache store
store cache.Cache
// url prefix for captcha image
URLPrefix string
// specify captcha id input field name
FieldIdName string
// specify captcha result input field name
FieldCaptchaName string
// captcha image width and height
StdWidth int
StdHeight int
// captcha chars nums
ChallengeNums int
// captcha expiration seconds
Expiration int64
// cache key prefix
CachePrefix string
}

 你看到暴露的这些接口了吗?图片的大小,字数都是可以调整的,字体、弯曲程度这些就不行。不过宽度也不是可以随意设置的,我测试的结果是宽度不能小于100,高度不能小于40.不知道是什么情况。

上代码:

func init() {
store := cache.NewMemoryCache()
cpt = captcha.NewWithFilter("/captcha/", store)
cpt.ChallengeNums = 4
cpt.StdWidth = 100
cpt.StdHeight = 40
}

 







转载于:https://my.oschina.net/jinheking/blog/674707



推荐阅读
author-avatar
钟寓宛筠
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有