0

我正在使用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();
?>  

提前致谢。

4

1 回答 1

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'),
);
于 2013-02-18T12:45:45.390 回答