2017-01-30 64 views
1

我正在使用干預文件大小調整功能和文件上傳。 在控制器中,我只是檢查hasFile()或不。所以,即使我使用郵遞員正確發送郵件,每次我都會收到「不」的回覆。可能是什麼問題?使用laravel 5.3中的郵遞員上傳服務器上的圖像文件問題?

我的路線

Route::post('contact/image/upload',[ 
    'as'=> 'intervention.postresizeimage', 
    'uses'=>'[email protected]_image' 
]); 

代碼控制器

public function upload_image(Request $request){ 

     if((preg_match("/^[789]\d{9}$/", $request->header('UID')))){ 
     if($request->hasFile('photo')) 
      return "yes"; 
     else 
      return "no"; 


     $photo = $request->file('photo'); 
     $imagename = time().'.'.$photo->getClientOriginalExtension(); 

     $destinationPath_thumb = storage_path('images/thumbnail_images'); 
     $thumb_img = Image::make($photo->getRealPath())->resize(100, 100); 
     $thumb_img->save($destinationPath_thumb.'/'.$imagename,80); 

     $destinationPath_medium = storage_path('images/medium_images'); 
     $medium_img = Image::make($photo->getRealPath())->resize(500, 500); 
     $medium_img->save($destinationPath_medium.'/'.$imagename,80); 

     $destinationPath_original = storage_path('images/original_images'); 
     $photo->move($destinationPath_original, $imagename); 

     $user = \App\User::select(['inst_id'])->where('mobile','=',$request->header('UID'))->first(); 

     $update_img = \App\Contact::where([['id','=',$request->ID],['inst_id','=',$user->inst_id]])->update(['image'=>$imagename]); 

     if($update_img) 
      $response = response()->json(['data'=>[], 'error'=>0, 'error_msg'=>'', 'message'=>'Profile updated']); 
     else 
      $response = response()->json(['data'=>[], 'error'=>1, 'error_msg'=>'some went wrong', 'message'=>'Please try again']); 
     } 
     else 
     $response = response()->json(['data'=>[], 'error'=>1, 'error_msg'=>'wrong mobile in UID header','message'=>'wrong mobile no. in header']); 

    return $response; 

    } 
+1

做'DD($請求 - >所有())',看看它顯示。最有可能的是,'photo'不是發佈數據的正確名稱 – baig772

回答

4

我也是這麼認爲的照片不是爲發佈的數據正確的名稱。 您可能會看到郵遞員給定的圖像:

Postman Body

Postman Headers

+0

我明白了。謝謝一噸MdRasel艾哈邁德。 – SaMeEr

1

什麼形式標記你的enctype屬性?它應該是這樣,如果你上傳的文件:

<form method="post" enctype="multipart/form-data">