mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改微信关键字二维生成try
This commit is contained in:
parent
29d05def19
commit
cb6b3f9eb1
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user