CakePHP Form Validation only on Entering Data

前端 未结 4 1761
星月不相逢
星月不相逢 2021-01-17 07:21

I am trying to Upload a photo for one of the models and when i am going to the edit mode. It still asks me to upload the photo when the user only wants to edit the text rela

4条回答
  •  一整个雨季
    2021-01-17 07:56

    set the parameter

    'on' => 'create'
    

    just for the 'uploadError' rule

    'uploadError' => array(
        'rule' => array('uploadError'),
        'message' => 'Please select a Photo.',
        'on' => 'create',
    ),
    

    This way cake will force the user to upload an image just when the record is created.

    The other validation rules, intead, will always be valid, but only if a file is actually uploaded.

    see the manual

提交回复
热议问题