0

我的模型中存在一些验证错误。发生错误时,我丢失了很多数据。我看到 $this->request->data 的变化就像他将在控制器中对待一样。但是当发生错误时,我会重定向到视图并且我没有好的 "$this->request->data 来显示我的视图。

请问您有什么解决办法吗?

编辑:使用模型文件中的代码。我在此处添加 //BUG 以通知 $this->data->request 未重新设置的位置。

类事件扩展 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);
}

谢谢你看看我的麻烦。

4

0 回答 0