文件地址:app/services/user/UserSearchServices.php

方法名称:vicSearch

替换此方法,代码如下:

 public function vicSearch(int $uid, string $keyword, array $where)
    {
        $vicWordArr = [$keyword];
        if ($vicWordArr) {
			$vicword = $vicWordArr;
			$where['keyword'] = $vicWordArr;
        }
        $result = $this->dao->getKeywordResult(0, $keyword);
        $ids = [];
        if ($result && isset($result['result']) && $result['result']) {//之前查询结果记录
            $ids = $result['result'];
        } else {//分词查询

        }
        //搜索没有记录
        if (!$ids && $where) {
            //查出所有结果ids存搜索记录表
            /** @var StoreProductServices $services */
            $services = app()->make(StoreProductServices::class);
            $idsArr = $services->getSearchList($where, 0, 0, ['id']);
            if ($idsArr) {
                $ids = array_column($idsArr, 'id');
            }
        }
        $vicword = is_string($vicword) ? [$vicword] : $vicword;
        $this->saveUserSearch($uid, $keyword, $vicword, $ids);
        return $ids;
    }

Copy

如下图:

e744a202407131623115778.png

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部