本篇文章主要讲解使用laravel5.8自带的验证码库实现验证码验证的效果教程。通过本教程你可以快速接入到自己的项目中开发相应的验证功能。
作者:任聪聪 (rccblogs.com)
日期:2023年12月17日
composer require mews/captcha
1.providers部分
Mews\Captcha\CaptchaServiceProvider::class,
2.aliases 部分
'Captcha' => Mews\Captcha\Facades\Captcha::class,
php artisan vendor:publish
弹出下面信息时,依据自己对应的编号继续输入即可
这里我输入的是数字:9
Copied File [\vendor\mews\captcha\config\captcha.php] To [\config\captcha.php]
Publishing complete.
E:\develop\php\51powand>
在新的验证码的配置文件中。
<img src="{{captcha_src()}}" style="cursor: pointer" onclick="this.src='{{captcha_src()}}'+Math.random()" >
use Illuminate\Support\Facades\Validator;
$messages = [
'verificationCode.required' => '验证码不可为空',
'verificationCode.captcha' => '验证码错误',
];
$validator = Validator::make($request->all(), [
'verificationCode' => 'required|captcha',
], $messages);
if ($validator->fails()) {
$errorMessage = $validator->errors()->first();
return $errorMessage;
}