添加“分页”在 Zend Lucene 中在 codeigniter 中搜索结果
大家好,我尝试将 zend lucene 搜索系统与 codeigniter 集成。但问题是我如何在 Codeigniter 中格式化分页搜索结果,
下面是搜索代码:
$query//keyword to search
$index = Zend_Search_Lucene::open(DOCROOT . 'data/index'); //opening index
$hits['post']= $index->find($query); //getting the search result
请帮助我朋友
Hey anyone, i try integrating zend lucene search system with codeigniter. But the problem is how i can formatting the search result in pagination in Codeigniter
below is the search code :
$query//keyword to search
$index = Zend_Search_Lucene::open(DOCROOT . 'data/index'); //opening index
$hits['post']= $index->find($query); //getting the search result
Please help me friends
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的控制器应该是这样的:
你的视图应该是这样的
Your controller should look like this:
And your view should look like this