4

我正在使用蛋糕 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.

谢谢

4

6 回答 6

3

我同意这很烦人(IMO CakePHP 应该足够聪明,可以根据“类型”自动确定从“哪里”获取数据)。

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

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

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

于 2013-04-01T22:18:59.567 回答
1

我的解决方案:

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

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

$this->Form->create('Tablefilter', array('type' => 'get'))
于 2013-08-09T14:38:50.070 回答
1

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

$this->request->data = $this->params['url'];
于 2013-04-01T21:17:18.377 回答
0

使用PRG。签出这个插件。

于 2013-04-01T21:47:21.217 回答
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());
    }
}

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

于 2013-04-02T13:45:27.190 回答
0

这对我有用:

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

表格定义:

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

于 2016-09-09T07:05:39.603 回答