验证码以及点击刷新

  下载验证码安装包 参考:

composer require topthink/think-captcha 1.*

在根目录/vendor/think-captcha/src/Captcha.php内可对验证码样式做更改

模版内验证码的显示


<img src="{:captcha_src()}" alt="captcha" />


点击刷新验证码 给验证码一个点击事件加随机数即可


参考:


<img src="{:captcha_src()}" alt="captcha" onclick="this.src=‘{:captcha_src()}‘+‘?‘+Math.random()"/>



验证码验证
$this->validate($data,[
    ‘captcha|验证码‘=>‘require|captcha‘
]);
 

验证码以及点击刷新

上一篇:Docker系列(28)- 自定义网络


下一篇:elementUI table 两列数据‘逻辑并’过滤