cakedc搜索插件在价格范围内搜索

时间:2014-07-27 11:33:24

标签: php function cakephp search cakedc

我正在尝试使用cakedc搜索插件搜索两个价格,这里是我的模型代码:

public $actsAs = array(
    'Search.Searchable'
);

public $filterArgs = array(
    'price' => array(
    'type' => 'expression',
    'method' => 'makeRangeCondition',
    'field' => 'Price.views BETWEEN ? AND ?'
    )
);

   public function makeRangeCondition($data = array()) {
    if (strpos($data['price'], ' - ') !== false){
        $tmp = explode(' - ', $data['price']);
        $tmp[0] = $tmp[0] ;
        $tmp[1] = $tmp[1] ;
        return $tmp;
    } else {
        return array($minPrice, $maxPrice) ;
    }
}

我的控制器的代码:

public function index() {
    $this->Prg->commonProcess();
    $cond = $this->Property->parseCriteria($this->passedArgs);

$this->set('properties', $this->paginate('Property', $cond));
}

我的观点代码:

<?php
echo $this->Form->create();
echo $this->Form->input('minPrice');
echo $this->Form->input('maxPrice');
echo $this->Form->submit(__('Submit'));
echo $this->Form->end();

&GT;

表sql:

CREATE TABLE IF NOT EXISTS `properties` (

id varchar(36)NOT NULL,   price float DEFAULT NULL,   PRIMARY KEY(id),   独特的钥匙IDid) )ENGINE = MyISAM DEFAULT CHARSET = utf8;

2 个答案:

答案 0 :(得分:2)

而不是&#39;范围&#39; filterArgs中的键将其命名为&#39; price&#39;。因为只有当data [key]不为空时,插件才会通过密钥名称和调用方法进行检查。

答案 1 :(得分:0)

如果使用两个输入,则应在$filterArgs数组中使用两个参数。

您可以在模型中尝试此代码:

public $filterArgs = array(
        'minPrice' => array(
            'type' => 'query',
            'method' => 'priceRangeMin'
        ),

        'maxPrice' => array(
             'type' => 'query',
             'method' => 'priceRangeMax'
        )
    );

public function priceRangeMin( $data = array() ) {
    if( !empty( $data['minPrice'] ) ) {
        return array('Property.price >= '.$data['minPrice'].'');
    }
}

public function priceRangeMax( $data = array() ) {
    if( !empty( $data['maxPrice'] ) ) {
        return array('Property.price <= '.$data['maxPrice'].'');
    }
}

在控制器和视图中也使用上面相同的代码。