我有一个搜索表单,它有一个文本输入框、三个复选框和一个基于数据库用户数据的下拉列表中的预选默认值。例如,如果用户住在公社 1,则在下拉列表中选择 1 作为默认值。
我希望 CakePHP 在按该值过滤的数据库中执行搜索,并返回分页结果。按下提交按钮时这很容易,但我想在没有用户交互的情况下在页面加载时执行搜索。
现在,在控制器中,我尝试从下拉列表之外的其他地方获取公社价值:
if ($this->request->is('post)) {
//Perform normal search with the other input fields included.
} else {
//Do the filtered search only by commune value, which I get from a function.
}
问题是,那么分页将不起作用。这是预期的,因为分页使用 GET。当我尝试更改页面时,它不是一个帖子,并且搜索条件将再次设置为只有公社值的值,并且我在 SQL 语句中出现错误。
如果我上面的解释有点混乱,我很抱歉,但你必须原谅我,因为英语不是我的第一语言。
我需要有关如何以另一种方式做到这一点的建议。有可能吗?我怀疑有一个简单的解决方案,但我是 CakePHP 的新手,似乎无法理解。
执行搜索
$conditions = $this->setSearchConditions($this->request->data);
$res = $this->paginate('Ad', array($conditions));
$this->set('res', $res);
//limit is set in public $paginate variable
设置搜索条件
private function setSearchConditions($data) {
$conditions = array();
// $this->log('Search: DATA', 'debug');
//$this->log($data, 'debug');
if ($this->request->is('post)) { //Submit-button is clicked, performing full search
//$this->log('Dette er en post', 'debug');
if ($data['Ad']['searchField']) { //Text searchfield is not empty, adding title or description to search criteria
$this->log('Søkefeltet er ikke tomt', 'debug');
$str_search = '%' . $data['Ad']['searchField'] . '%';
$conditions[] = array(
'OR' => array(
'Ad.title LIKE' => $str_search,
'Ad.description LIKE' => $str_search
)
);
}//if
if ($data['Ad']['commune_id']) { // Commune dropdown is not empty, adding commune_id to search criteria
$conditions[] = array(
'Ad.commune_id' => $data['Ad']['commune_id']
);
}//if
if ($data['Ad']['type_id']) { // Type checkboxes are not empty, adding type_id to search criteria
$orArray = array();
foreach ($data['Ad']['type_id'] as $type) {
$orArray[] = array('Ad.type_id' => $type);
}
$conditions[] = array(
'OR' => $orArray
);
}//if
} else {
$conditions[] = array(
'Ad.commune_id' => $this->getDefaultCommune();
):
}
return $conditions;
}