xunsearch 在 Yii2 中使用,如何开启模糊匹配? [ 2.0 版本 ]
xunsearch 在 Yii2 中使用,如何开启模糊匹配?
public function getSearchData($keyword, $selectType, $pageSize = 10, $offset = 0)
{
$query = XunSearchModel::find()->where($keyword)->andWhere(['status' => 0]);
if ($selectType) {
$query->andWhere(['type' => $selectType]);
}
$count = $query->count();
$pages = new Pagination([
'totalCount' => $count,
'page' => Yii::$app->request->get('page', 1) - 1,
'pageSize' => $pageSize
]);
$data = $query->offset($offset ?: $pages->offset)
->limit($pages->limit)
->all();
$result['count'] = $count;
return $result;
}
共 0 个回答
没有找到数据。
PHP学院的中学生
注册时间:2018-10-23
最后登录:2024-09-23
在线时长:168小时13分
最后登录:2024-09-23
在线时长:168小时13分
- 粉丝29
- 金钱4725
- 威望30
- 积分6705