php – 如何通过Axios将文件发送到Laravel

前端之家收集整理的这篇文章主要介绍了php – 如何通过Axios将文件发送到Laravel前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要通过Axios将文件从客户端发布到服务器.

这是我的Vuejs代码

methods: {
    'successUpload': function (file) {
        const config = { headers: { 'Content-Type': 'multipart/form-data' } };
        axios.post('/Upload/File',file,config).then(function (response) {
            console.log(response.data);
        });
    }
}

这是我用于处理已发送文件的Laravel代码

public function uploadFile(Request $request)
{
    if($request->hasFile('file'))
      return "It's a File";

    return "No! It's not a File";
}

但它始终返回否它不是文件.

任何帮助将非常感激.

您必须创建一个FormData对象并附加图像文件.
methods: {
  'successUpload': function (file) {

    let data = new FormData();
    data.append('file',document.getElementById('file').files[0]);

    axios.post('/Upload/File',data).then(function (response) {
        console.log(response.data);
    });
  }
}

一个例子是here.

如果有效,请告诉我.

原文链接:https://www.f2er.com/laravel/133153.html

猜你在找的Laravel相关文章