Cakephp - 使用搜索按钮创建搜索字段

时间:2013-11-15 10:54:55

标签: php forms cakephp search redirect

我需要在按钮上执行“onclick”操作,以便重定向到这样的内容:

 location/[textfield_data]

我正在使用 cakephp ,此时我最接近的就是这个。

echo $this->Form->input('link', array('label' => false, "class" => "form-control input-medium", "placeholder" => __('Procurar')));

echo $this->Form->button('', array('class' => 'btn btn-primary icon-search icon-white' ,'onclick' => "location.href='/'"));

使用我的代码,cakephp正在检索我:

/[view]?data%5Blink%5D=

[view]是我当前的页面。

找到解决方案

我已经找到了解决方案。

echo $this->Form->input('link', array('label' => false, "class" => " form-control input-medium", "placeholder" => __('Procurar'), 'id' => 'search'));

echo $this->Form->button(null, array('class' => 'btn btn-primary icon-search icon-white' ,'onclick' => "location.href='/mywantedurl/'+document.getElementById('search').value;"));

请注意,我没有使用任何form-> create或form->结束,否则它无法正常工作。

2 个答案:

答案 0 :(得分:1)

为什么需要使用JavaScript?只需使用GET方法即可。您应该以任何方式使用GET代替POST搜索请求,因此请求可以是书签等。

您可以使用$this->request->query代替$this->request->data来实现此目的。

<?php
// app/View/Locations/index.ctp
echo $this->Form->create('Location', array('type' => 'get'));
echo $this->Form->input('Location.keywords');
echo $this->Form->end('Search');

然后在相应的控制器中:

<?php
// app/Controller/LocationsController.php
class LocationsController extends AppController {

    public function search() {
        if (!isset($this->request->query['keywords'])) {
            throw new BadRequestException();
        }

        $results = $this->Location->findByKeywords($this->request->query['keywords']);

        $this->set('results', $results);
    }
}

我不知道数据库表的实际架构或您的型号名称,但上述内容应该指向正确的方向。

答案 1 :(得分:0)

我使用像这样的代码

echo $this->Form->input('link', array('label' => false, "class" => "form-control input-medium", "placeholder" => __('Procurar'), 'id' => 'search-field'));
echo $this->Form->button('', array('class' => 'btn btn-primary icon-search icon-white' , 'id' => 'search-button'));
$this->Js->get('#search-button');
$this->Js->event('click', 'edit()');

$this->Js->buffer
(
    "function edit()
    {
        search_term = this.document.getElementById('search-field').value;
        if(search_term)
            window.location = \"/index.php/location/\" + search_term;
        return false;
    }"
);