提交 f4aa3d39 编写于 作者: G gongfuxiang

搜索热门关键字bug

上级 8da5dc05
...@@ -182,7 +182,10 @@ class SearchService ...@@ -182,7 +182,10 @@ class SearchService
*/ */
public static function SearchKeywordsList($params = []) public static function SearchKeywordsList($params = [])
{ {
return Db::name('SearchHistory')->where(['keywords'=>['neq', '']])->group('keywords')->limit(10)->column('keywords'); $where = [
['keywords', '<>', ''],
];
return Db::name('SearchHistory')->where($where)->group('keywords')->limit(10)->column('keywords');
} }
} }
?> ?>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册