close

這邊儲存目前使用Laravel所遇到的問題與解法。

--

route使用post方法:

Route::resource('uploadfile', 'CameraController@uploadfile');   // 上傳照片(功能)

--

post後顯示"TokenMismatchException in VerifyCsrfToken.php line"錯誤訊息。

解法:在form裏頭加入"<input type="hidden" name="_token" value="{{ csrf_token() }}">"

參考自: https://laracasts.com/discuss/channels/laravel/tokenmismatchexception-dying-over-here/replies/185904

--

上傳圖片

$client = new Client();

$res = $client->request($method, $apiUrl, [
'multipart' => [
[
'name' => 'fileUpload',
'filename' => $imageFileName,
'contents' => fopen( $imagePath, 'r' ),
],
],
'headers' => ['SessionKey' => $token]

]);

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 dizzy03 的頭像
    dizzy03

    碎碎念

    dizzy03 發表在 痞客邦 留言(0) 人氣()