Laravel:Ajax POST文件上传请求始终返回405

时间:2020-01-05 16:44:53

标签: php ajax laravel file-upload

AJAX文件上传始终返回405错误,指出“此路由不支持GET方法。受支持的方法:POST。” 路由文件已定义了正确的方法。检查以下代码段。

/* route */
Route::post('/upload', function(){
  return json_encode(array('success' => 'true', 'file' => 'abc.jpg'));
});

检查所附的屏幕截图,以供参考。 enter image description here

Below is the request params sent

我正在使用https://github.com/LPology/Simple-Ajax-Uploader插件通过AJAX上传。一切都可以在localhost上正常工作,但不能在在线服务器上工作。

0 个答案:

没有答案