我的模型中存在一些验证错误。发生错误时,我丢失了大量数据。我看到$ this-> request->数据的变化就像他将在控制器中处理一样。但是当发生错误时,我会重定向到视图,而我没有好的“$ this-> request->数据来显示我的视图。
请你解决任何问题吗?
编辑:使用模型文件中的代码。我在这里添加// BUG以通知$ this-> data->请求未被重新设置。
class Event扩展了AppModel {
public $hasMany = 'CategoryOptionEventEvent';
public $hasOne = array(
'CategoryVehicleEvent' =>
array(
//'className' => 'Event',
'joinTable' => 'category_vehicle_events',
'foreignKey' => 'id',
'associationForeignKey' => 'id',
'conditions' => '',
'fields' => '',
'order' => '',
'limit' => '',
'offset' => '',
'finderQuery' => '',
'with' => ''
),
);
public $validate = array(
'name' => array('rule' => 'notEmpty'),
'description' => array('rule' => 'notEmpty'),
//'date' => array('rule' => 'notEmpty'),
'hour' => array('rule' => 'notEmpty'),
'street_number' => array('rule' => 'notEmpty'),
'street_name' => array('rule' => 'notEmpty'),
'postal_code' => array('rule' => 'notEmpty'),
'city' => array('rule' => 'notEmpty'),
//BUG HERE
'vehicle_minimum' => array(
'rule1' => array(
'rule' => 'notEmpty'
),
'rule2' => array(
'rule' => array('comparisonWithField', '<=', 'vehicle_maximum'),
'message' => 'Le nombre de véhicule minimum doit être inférieur ou égal au nombre de véhicule max.'
)
),
'vehicle_maximum' => array('rule' => 'notEmpty'),
'vehicle_price' => array('rule' => 'notEmpty'),
'attendent_price' => array('rule' => 'notEmpty'),
'attendent_maximum' => array('rule' => 'notEmpty'),
'is_visible' => array('rule' => 'notEmpty'),
//Validation date
//BUG HERE
'date' => array(
'rule' => array('date', 'ymd'),
'message' => 'Entrez une date correcte !')
);
编辑已解决: 我通过控制器验证数据解决了我的问题
if($this->Event->validates()){
}
else{
$this->request->data = $this->Event->findById($id);
}
感谢看看我的麻烦。