我正在使用cakephp 2.1和cakedc搜索插件 事情是我不能把它粘在一起。还有:
Notice (8): Indirect modification of overloaded property ProjectsController::$paginate has no effect [APP\Controller\ProjectsController.php, line 48]
跟随cakedc教程,但缺少一些东西!简单搜索不会过滤任何东西 我想按名称字段过滤。
在我的项目模型
上public $actsAs = array('Search.Searchable');
var $name = 'Project';
public $filterArgs = array(
array('name' => 'name', 'type' => 'like'),
array('name' => 'filter', 'type' => 'query', 'method' => 'orConditions'),
);
public function orConditions($data = array()) {
$filter = $data['filter'];
$cond = array(
'OR' => array(
$this->alias . '.name LIKE' => '%' . $filter . '%',
//$this->alias . '.body LIKE' => '%' . $filter . '%',
));
return $cond;
}
在我的控制器中:
public $components = array('Search.Prg');
public $presetVars = array(
array('field' => 'name', 'type' => 'value')
);
更新索引函数以仅使用index.ctp(无查找函数)
public function index() {
$this->Prg->commonProcess();
$this->Project->recursive = 0;
// next line causes
// Notice (8): Indirect modification of overloaded property ProjectsController::$paginate has no effect [APP\Controller\ProjectsController.php, line 48]
//$this->paginate['conditions'] = $this->Project->parseCriteria($this->passedArgs);
$this->set('projects', $this->paginate());
}
并将搜索表单添加到view.ctp
echo $this->Form->create('Project', array('url' => array_merge(array('action' => 'index'), $this->params['pass'])));
echo $this->Form->input('name', array('div' => false));
echo $this->Form->submit(__('Search', true), array('div' => false));
echo $this->Form->end();
我知道这一定是我的一些明显错误,请耐心等待。 有人可以帮忙吗?
非常感谢!
答案 0 :(得分:10)
我很高兴让人们知道我找到了使用cakedc搜索插件的方法。
首先,我必须严格遵循本教程1.3(起初我认为它不适用于2.1,但它的工作方式就像魅力一样。)
http://www.youtube.com/watch?v=FAVuLXFVaCw
从cakedc下载1.3示例代码
http://cakedc.com/eng/downloads/view/cakephp_search_plugin
理解视频教程。 (尝试按照自述文件说明运行它但收到错误致命错误:第83行的C:\ wamp \ www \ search \ webroot \ index.php中找不到类'Dispatcher'所以
选择只获取代码片段并让它们在2.1)
回到我的项目:
1.-从cakedc https://github.com/CakeDC/search下载搜索版本2.1,
文件CakeDC-search-2.1-0-g834f79f.zip。
2.-将所有文件放在/ plugins / Search /文件夹
上3.-添加
CakePlugin::load('Search');
到/Config/bootstrap.php的底部
4.-在我的控制器上,声明了组件和presetVars(我正在使用名为name的字段)
public $components = array('Search.Prg');
public $presetVars = array(
array('field' => 'name', 'type' => 'value'),
array('field' => 'pr_status', 'type' => 'value'),
);
5.-并更新了我的索引功能:
public function index() {
$this->Prg->commonProcess();
$this->paginate = array(
'conditions' => $this->Project->parseCriteria($this->passedArgs));
$this->set('projects', $this->paginate());
}
6.-在我的模型上,添加了
public $actsAs = array('Search.Searchable');
public $filterArgs = array(
array('name' => 'name', 'type' => 'query', 'method' => 'filterName'),
array('name' => 'pr_status', 'type' => 'value'),
);
public function filterName($data, $field = null) {
if (empty($data['name'])) {
return array();
}
$nameField = '%' . $data['name'] . '%';
return array(
'OR' => array(
$this->alias . '.name LIKE' => $nameField,
));
}
// Built a list of search options (unless you have this list somewhere else)
public function __construct($id = false, $table = null, $ds = null) {
$this->statuses = array(
'' => __('All', true),
0 => __('Bid', true),
1 => __('Cancelled', true),
2 => __('Approved', true),
3 => __('On Setup', true),
4 => __('Field', true),
5 => __('Closed', true),
6 => __('Other', true));
parent::__construct($id, $table, $ds);
}
7.-最后,在index.ctp上创建了搜索表单,位于表标记
的正上方 <div><?php
echo $this->Form->create('Project', array(
'url' => array_merge(array('action' => 'index'), $this->params['pass'])
));
echo $this->Form->input('name', array('div' => false, 'empty' => true)); // empty creates blank option.
echo $this->Form->input('pr_status', array('label' => 'Status', 'options' => $statuses));
echo $this->Form->submit(__('Search', true), array('div' => false));
echo $this->Form->end();
?>
</div>
即使我使用2.1,我也学会了不丢弃1.3教程和文档。 下一步是按日期和更好的搜索表单进行过滤。
祝大家好运。
卡洛斯