[更新]修改微信关键字二维生成try

This commit is contained in:
Anyon 2018-03-19 14:45:13 +08:00
parent 29d05def19
commit cb6b3f9eb1
2 changed files with 12 additions and 10 deletions

View File

@ -53,8 +53,6 @@ class Keys extends BasicAdmin
/**
* 列表数据处理
* @param array $data
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
protected function _index_data_filter(&$data)
{
@ -62,11 +60,15 @@ class Keys extends BasicAdmin
'keys' => '关键字', 'image' => '图片', 'news' => '图文',
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音',
];
$wechat = WechatService::qrcode();
foreach ($data as &$vo) {
$result = $wechat->create($vo['keys']);
$vo['qrc'] = $wechat->url($result['ticket']);
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
try {
$wechat = WechatService::qrcode();
foreach ($data as &$vo) {
$result = $wechat->create($vo['keys']);
$vo['qrc'] = $wechat->url($result['ticket']);
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
}
} catch (\Exception $e) {
$this->error($e->getMessage());
}
}

View File

@ -16,13 +16,13 @@ return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
'hostname' => 'ctolog.com',
// 数据库名
'database' => 'admin_v3',
// 用户名
'username' => 'admin_v3',
'username' => 'root',
// 密码
'password' => 'FbYBHcWKr2',
'password' => 'Test12345',
// 端口
'hostport' => '3306',
// 连接dsn