CakePHP:“GET”表单在提交后不会自动填充表单字段

时间:2013-04-01 20:44:32

标签: php forms cakephp query-string cakephp-2.3

我正在使用Cake 2.3.0。如果我使用POST提交表单,则所选表单字段会结束,但如果我使用GET提交表单,则所有表单字段都会返回其默认值。

有没有办法让GET提交的内容像POST一样有效?

这是我的控制器:

class ListingsController extends AppController {
    public function results() {
        $conditions = array(
            'Listing.Beds >=' => $this->request->query['beds'], 
            'Listing.ListingStatus >=' => $this->request->query['status'], 
        );

        $this->paginate = array(
            'conditions' => $conditions,
        );    

        $this->set('listings', $this->paginate());
    }
}

以下是我的观点。

echo $this->Form->create(null, array(
    'controller' => 'listings', 
    'action' => 'results',
    'type' => 'get'
));

echo $this->Form->input('name');

$beds = array('1' => '1+', '2' => '2+', '3' => '3+', '4' => '4+', '5' => '5+');
echo $this->Form->input('beds', array('options' => $beds));

$status = array('Active' => 'Active', 'Pending' => 'Pending', 'ActivePending' => 'Active and Pending');
echo $this->Form->input('status', array('options' => $status));

echo $this->Form->end('Update'); 

所以基本上如果我将'type' => 'get'更改为'type' => 'post',它就可以了。但我需要能够通过GET来完成此任务。

由于

6 个答案:

答案 0 :(得分:3)

我同意这很烦人(IMO CakePHP应该足够智能,根据'类型'自动确定'从哪里获取数据'。

您必须将请求的“查询”复制到请求的“数据”;

$this->request->data = $this->request->query;

不在我的电脑后面测试它(像往常一样,哈哈),但应该可以工作。

答案 1 :(得分:1)

尝试将此添加到您的控制器:

$this->request->data = $this->params['url'];

答案 2 :(得分:1)

我的解决方案:

$this->params->data = array('Tablefilter' => $this->params->query);

其中“Tablefilter”取决于表单定义(通常是模型名称)

$this->Form->create('Tablefilter', array('type' => 'get'))

答案 3 :(得分:0)

使用PRG。结帐this插件。

答案 4 :(得分:0)

我最终做的是循环遍历$this->request->query数组并将这些值传递给匹配的$this->request->data

所以我补充说:

foreach($this->request->query as $k => $v){
    $this->request->data['Listing'][$k] = $this->request->query[$k];
}

最终给了我这个:

class ListingsController extends AppController {
    public function results() {

        foreach($this->request->query as $k => $v){
            $this->request->data['Listing'][$k] = $this->request->query[$k];
        }

        $conditions = array(
            'Listing.Beds >=' => $this->request->query['beds'], 
            'Listing.ListingStatus >=' => $this->request->query['status'], 
        );

        $this->paginate = array(
            'conditions' => $conditions,
        );    

        $this->set('listings', $this->paginate());
    }
}

我不会接受这个作为答案,因为我不知道这是否是最佳或建议的方式。但它现在对我有用。

答案 5 :(得分:0)

这对我有用:

$ this-> request-> data [' Cluster'] = $ this-> params-> query; //控制器端

表单定义:

$这 - >形状配合>创建('聚类',阵列('类型' =>'获得'));