0

我正在尝试使用 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();

?>

表 sql:

CREATE TABLE IF NOT EXISTS `properties` (

idvarchar(36) NOT NULL, pricefloat DEFAULT NULL, PRIMARY KEY ( id), UNIQUE KEY ID( id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

4

2 回答 2

2

而不是 filterArgs 中的“范围”键将其命名为“价格”。因为插件仅在 data[key] 不为空时检查键名和调用方法。

于 2014-07-28T12:13:52.930 回答
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'].'');
    }
}

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

于 2015-07-02T12:57:43.737 回答