Laravel 文件上传 API 使用 Postman [英] Laravel file upload API using Postman

查看:33
本文介绍了Laravel 文件上传 API 使用 Postman的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的控制器中有以下代码:

 公开函数上传(Request $request){$files = $request->file('uploads');if(!empty($files)) {foreach($files 作为 $file) {存储::put($file-getClientOriginalName(),file_get_contents($file));}}

通过 routes 中的 api.php 调用:

Route::post('/upload', [ 'uses' => 'UploadController@upload' ]);

我正在使用邮递员来测试我的应用程序.

标题:

主体:

原始:

<块引用>

POST/stic/public/api/upload HTTP/1.1 主机:127.0.0.1:80内容类型:multipart/form-data;边界=----WebKitFormBoundary7MA4YWxkTrZu0gW 缓存控制:无缓存邮递员令牌:0caf7349-5c91-e5f1-766f-72a3f1e33900

------WebKitFormBoundary7MA4YWxkTrZu0gW 内容配置:表单数据;名称="上传[]";文件名="banana.png" 内容类型:image/png png 数据放在这里..------WebKitFormBoundary7MA4YWxkTrZu0gW--

$files 在上传文件时为空.我究竟做错了什么?

经过一番挖掘,我让我的上传器在没有邮递员的情况下工作,我注意到邮递员的 Content-Type 中缺少--boundary".LHS 工作,RHS(邮递员)不工作.

有什么想法吗?

解决方案

问题是我在 postman 中明确指定了 Content-Type.

根据此post 的答案之一::p>

无需手动添加内容类型标头.您正在覆盖 Postman 设置的值.只需在 POST 请求中选择 form-data 并发送您的请求以查看它是否有效.

I have the following code in my controller:

    public function upload(Request $request)
    {
       $files = $request->file('uploads');
       if(!empty($files)) {
           foreach($files as $file) {
               Storage::put($file-getClientOriginalName(),file_get_contents($file));
        }
    }

Which is called via an api.php in routes:

Route::post('/upload', [ 'uses' => 'UploadController@upload' ]);

I am using postman to test my application.

Header:

Body:

Raw:

POST /scotic/public/api/upload HTTP/1.1 Host: 127.0.0.1:80 Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW Cache-Control: no-cache Postman-Token: 0caf7349-5c91-e5f1-766f-72a3f1e33900

------WebKitFormBoundary7MA4YWxkTrZu0gW Content-Disposition: form-data; name="uploads[]"; filename="banana.png" Content-Type: image/png png data goes here.. ------WebKitFormBoundary7MA4YWxkTrZu0gW--

The $files is empty upon uploading the file. What am i doing wrong?

After a bit of digging, I got my uploader working without postman, I noticed that the '--boundary' was missing from the Content-Type in postman. The LHS works, RHS(postman) does not work.

Any ideas?

解决方案

The issue was that I was explicitly specifying the Content-Type in postman.

According to one of the answers from this post:

There is no need to add a content-type header manually. You are overriding the value set by Postman. Just select form-data in POST request and send your request to see if it works.

这篇关于Laravel 文件上传 API 使用 Postman的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆