在使用TP5官方的验证码类库时经常会遇到验证码无法显示的问题,最常见的就是路径问题和版本问题
路径问题:
当使用composer require topthink/think-captcha命令安装完验证码类库后,注意打开hepler.php文件查看一下路径,前三条的路径有时候没有指定位置:
Route::get('captcha/[:id]', "\\think\\captcha\\CaptchaController@index");
Validate::extend('captcha', function ($value, $id = "") {
return captcha_check($value, $id, (array)\think\Config::get('captcha'));
});
Validate::setTypeMsg('captcha', '验证码错误!');
还有方法里:
function captcha_src($id = "")
{
return Url::build('/captcha' . ($id ? "/{$id}" : ''));
}
这就需要我们手动在类前面添加\think\的路径,变为:
\think\Route::get('captcha/[:id]', "\\think\\captcha\\CaptchaController@index");
\think\Validate::extend('captcha', function ($value, $id = "") {
return captcha_check($value, $id, (array)\think\Config::get('captcha'));
});
\think\Validate::setTypeMsg('captcha', '验证码错误!');
function captcha_src($id = "")
{
return \think\Url::build('/captcha' . ($id ? "/{$id}" : ''));
}
版本问题:
现在使用composer require topthink/think-captcha命令后下载安装完成的验证码插件是2.0移上的版本,只适用于TP5.1,TP5.0是不行的,这就需要我们卸载掉下载的2.0版本后,再下载安装1.x版本的验证码类库,具体命令如下:
卸载2.0:composer remove topthink/think-captcha
下载1.x:composer require topthink/think-captcha 1.*
这样安装完成后就可以正常显示验证码啦