搜索功能无法使用ID字段输入

时间:2013-02-18 12:41:35

标签: cakephp

我正在使用https://github.com/cakedc/search上的搜索插件。我试图仅使用ID字段搜索记录,即如果我在表单输入中键入1,则必须显示具有用户ID 1的记录。我现在面临的挑战是当我指定输入应该是id字段,搜索功能的输入字段在我的索引视图中消失,奇怪的是当我指定输入字段显示的不同字段名称时。

以下是我的模型的代码

public $actsAs = array('Search.Searchable');

public $filterArgs = array(
'id' => array('type' => 'like', 'field' => 'ItSupportRequest.id'),
);

public function findByTags($data = array()) {
$this->Tagged->Behaviors->attach('Containable', array('autoFields' => false));
$this->Tagged->Behaviors->attach('Search.Searchable');
$query = $this->Tagged->getQuery('all', array(
'conditions' => array('Tag.name'  => $data['tags']),
'fields' => array('foreign_key'),
'contain' => array('Tag')
));
return $query;
}

public function orConditions($data = array()) {
$filter = $data['filter'];
$cond = array(
'OR' => array(
$this->alias . '.id LIKE' => '%' . $filter . '%',
));
return $cond;

}

,这是我的控制器代码。

public $components = array('Search.Prg');

public $presetVars = true; // using the model configuration

public function find() {
$this->Prg->commonProcess();
$this->paginate['conditions'] = $this->ItSupportRequest->parseCriteria($this->passedArgs);
$this->set('articles', $this->paginate());
}

,在我的index.ctp文件中,我有这段代码。

<?php 
echo $this->Form->create('ItSupportRequest', array(
'url' => array_merge(array('action' => 'find'), $this->params['pass'])
));
echo $this->Form->label('Query ID:') . "<br/>";        
echo $this->Form->input('name', array('div' => false, 'label' => false));

echo $this->Form->submit(__('Search'), array('div' => false));
echo $this->Form->end();
?>  

提前致谢。

1 个答案:

答案 0 :(得分:0)

你不应该把它称为id,因为id会被隐藏(因为cake假设这是一个主键)。

要么将其他名称命名,要么使用

手动覆盖此行为
$this->Form->input('id', array('type' => 'text'));

但我会像“搜索”和

一样
$this->Form->input('search', array('placeholder' => 'ID to look for'));

public $filterArgs = array(
    'search' => array('type' => 'like', 'field' => 'ItSupportRequest.id'),
);