죄송합니다. 사진은 성공적으로 업로드되었는데 배경의 해당 폴더에 사진이 없습니다. 이유가 무엇인가요? (서버에 배포)
槑槑2020-10-19 14:27:26
공개 함수 upload(){ $file = request()->file('file'); if ($file) { $info = $file->move('/public/upload/weixin'); if ($info) { $file = str_replace('\', '/', $info->getSaveName()); $res = ['errCode'=>0,'errMsg'=>'이미지 파일 저장','file'=>$file]; json($res) 반환; }else { return $this->errorJson(2, $file->getError()); } }}