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]
]);
全站熱搜
留言列表