91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Yii框架中引入coreseek分頁功能

發布時間:2021-04-13 17:24:14 來源:億速云 閱讀:147 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關怎么在Yii框架中引入coreseek分頁功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

具體如下:

把sphinxapi.php改為SphinxClient.php 類文件隨便放,你能找到就行,我放在advanced/frontend/web/SphinxClient.php,打開common/config/bootstrap.php

在里面添加

Yii::$classMap['SphinxClient']='@frontend/web/SphinxClient.php';

地址寫正確

在需要用得控制其中 use SphinxClient

controller控制器

/**
 * 話題搜索
 *
 * @author YING
 * @param void
 * @return void
 */
public function actionTopic()
{
  //模擬數據
  $studId=2; //用戶id
  $classId=2; //班級id
  $title=""; //為空
  //實例化模型
  $studTopic=new StudTopic();
  //查詢
  $data=$studTopic->find()->select('*')->innerJoin('stud_user','stud_topic.stud_id=stud_user.stud_id')->where(['class_id'=>$classId]);
  //實例化分頁類
  $pagination=new Pagination(['totalCount' => $data->count()]);
  //每頁條數
  $pagination->setPageSize(3);
  //執行分頁
  $topicInfo= $data->offset($pagination->offset)->limit($pagination->limit)->asArray()->all();
  //返回值
  return $this->render('topicList',['topicInfo'=>$topicInfo,'pages'=>$pagination,'studId'=>$studId,'classId'=>$classId,'title'=>$title]);
}
/**
 * coreseek搜索
 *
 * @author YING
 * @param void
 * @return void
 */
public function actionSearchTitle()
{
  //接值
  $title=Yii::$app->request->get('t_title');
  $classId=Yii::$app->request->get('class_id');
  //模擬數據
  $studId=2; //用戶id
  //coreseek 搜索
  $cl = new SphinxClient ();
  $cl->SetServer ( '127.0.0.1', 9312);
  $cl->SetConnectTimeout ( 3 );
  $cl->SetArrayResult ( true );
  $cl->SetMatchMode ( SPH_MATCH_ANY);
  $res = $cl->Query ( $title, "*" );
  //如果存在值
  if($res['total']){
    $matches=$res['matches'];
    foreach($matches as $key => $val){
     $tidArray[]=$val['id'];
    }
  }
  //轉化為字符串
  $tidStr=isset($tidArray) ? implode(',',$tidArray) : 0;
  //實例化模型
  $studTopic=new StudTopic();
  //查詢
  $data=$studTopic->find()->select('*')->innerJoin('stud_user','stud_topic.stud_id=stud_user.stud_id')->where("t_id in ($tidStr)");
  //實例化分頁類
  $pagination=new Pagination(['totalCount' => $data->count()]);
  //每頁條數
  $pagination->setPageSize(3);
  //執行分頁
  $topicInfo= $data->offset($pagination->offset)->limit($pagination->limit)->asArray()->all();
  //加載模板
  return $this->render('topicList',['topicInfo'=>$topicInfo,'pages'=>$pagination,'studId'=>$studId,'classId'=>$classId,'title'=>$title]);
}

view視圖

<?php
use yii\widgets\ActiveForm;
use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets\LinkPager;
?>
<table class="table">
  <tr>
    <td>標題</td>
    <td>作者</td>
    <td>發布時間</td>
    <td>操作</td>
  </tr>
  <?php foreach($topicInfo as $key => $val): ?>
    <tr id="tr_<?= $val['t_id']?>">
      <td><input type="checkbox" tid="<?= $val['t_id']?>"/> <?= $val['t_title']?></td>
      <td><?= $val['stud_name']?></td>
      <td><?= date('Y-m-d H:i:s',$val['add_time'])?></td>
      <?php if($val['stud_id']==$studId):?>
      <td><a href="index.php?r=student/update-topic&topic_id=<?= $val['t_id']?>" rel="external nofollow" >編輯</a>||<a href="">刪除</a></td>
      <?php else: ?>
      <td><a href="">刪除</a></td>
      <?php endif; ?>
    </tr>
  <?php endforeach; ?>
  <tr>
    <td><input type="button" value="全選/全不選" id="all"/></td>
    <td><input type="button" value="反選" id="fan"/></td>
    <td><input type="button" value="批刪" id="del"/></td>
  </tr>
</table>
<?php
echo LinkPager::widget([
  'pagination' => $pages,
]);
?>
<script src="./css/js/jquery.1.12.min.js"></script>
<script>
  //全選/全不選
   var temp=true; //臨時變量
  $('#all').click(function(){
    $('input[type="checkbox"]').prop('checked',temp);
    //取反
    temp=!temp;
  })
  //批刪
  $('#del').click(function(){
    var checkAll=$('input[type="checkbox"]'); //獲取全部的復選框
    var length=checkAll.length; //計算長度
    var arr=new Array(); //定義數組
    var str=""; //定義字符串
    //循環
    $.each(checkAll,function(k,v){
      //判斷是否選中
      if(checkAll[k].checked){
        arr.push(checkAll.eq(k).attr('tid'));
      }
    })
    //轉化為字符串
    str=arr.join(',');
    //ajax
    var url="index.php?r=student/delete-all"; //地址
    $.get(url,{str:str},function(msg){
      if(msg){
        //window.location.reload(); //刷新頁面
        //節點刪除
        $.each(arr,function(k,v){
          $('#tr_'+v).remove();
        });
      }
    },'json');
  });
  //反選
  $("#fan").click(function(){
    var checkAll=$('input[type="checkbox"]'); //獲取復選
    $.each(checkAll,function(k,v){
      this.checked=!this.checked;
    })
  });
</script>

上述就是小編為大家分享的怎么在Yii框架中引入coreseek分頁功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

紫金县| 沙田区| 皋兰县| 和林格尔县| 独山县| 应城市| 武强县| 原阳县| 景东| 宁都县| 山丹县| 崇礼县| 分宜县| 麻栗坡县| 金山区| 东山县| 郎溪县| 天门市| 长汀县| 巴南区| 耒阳市| 勃利县| 涟水县| 济阳县| 新巴尔虎右旗| 安乡县| 边坝县| 贡觉县| 庐江县| 黄龙县| 株洲县| 永寿县| 大洼县| 佛坪县| 彰武县| 大邑县| 新竹市| 新巴尔虎右旗| 秦皇岛市| 吉安县| 临澧县|