我正在尝试使用cakedc插件开发一个简单的搜索表单,我按照一步一步的说明,但我得到了下一个错误:
Database Error
错误:SQLSTATE [42000]:语法错误或访问冲突:1064 SQL语法中有错误;检查与MySQL服务器版本对应的手册,以便在第1行的“validateSearch”附近使用正确的语法
SQL查询:validateSearch
我不知道我错了什么,你能帮助我吗?这就是我所拥有的,谢谢你。 在控制器中:
class ProductosController extends AppController {
public $name = 'Productos';
public $uses = array('Empleado','Cliente', 'Mesa','Producto', 'Productotipo','Productos');
public $components = array('Search.Prg');
public $presetVars = true;
public $paginate=array();
public function ventas(){
$this->Prg->commonProcess();
$this->paginate['conditions'] = $this->Producto->parseCriteria($this->Prg->parsedParams());
$this->set('productos', $this->paginate());
}
在模型中:
class Producto extends AppModel {
public $name = 'Producto';
public $displayField = 'productotipos_id';
public $belongsTo = array('Productotipo'=>array('className'=>'Productotipo','foreignKey'=>'productotipos_id','conditions'=>'','order'=>''));
public $actsAs = array('Search.Searchable');
public $filterArgs = array(
'nombre' => array('type' => 'like')
);
在视图中
<?php echo $this->Form->create('Producto', array('url' => array_merge(array('action'=>'ventas'), $this->params['pass'])));?>
<fieldset>
<legend>Pedido</legend>
<?php
echo $this->Form->input('Producto.nombre', array('div'=>false, 'empty'=>true));
echo $this->Form->submit(__('Search', true), array('div' => false));
echo $this->Form->end();
?>
</fieldset>
答案 0 :(得分:2)
尝试重新排序$uses
Controller的模型将是第一个:
public $uses = array('Producto', 'Empleado', 'Cliente', 'Mesa', 'Productotipo');
应该有所帮助。不知道为什么,但是CakeDC搜索插件中的一些方法可能取决于此数组中的第一项。
答案 1 :(得分:0)
SQL查询:validateSearch
当您尝试调用不存在的模型方法时,通常会出现错误。
因此,无论您尝试分页哪种模型(不粘贴类声明都不是一个好主意......)由于某种原因不会使用可搜索的行为。
如果模型是正确的,那么由于某种原因你不必加载行为。