CakePHP Form Validation only on Entering Data

前端 未结 4 1789
星月不相逢
星月不相逢 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:36

    Try this approach, I used this several times. Replace 'Model' with your model name.

    if($this->request->data['Molel']['display_photo']['name']!=''){
        // put your code here for upload image
    else
    {
        unset($this->request->data['Model']['display_photo']); // this will exclude this from validation
    }
    

提交回复
热议问题