如何使用 JavaScript 和 FastAPI 上传多个文件?

时间:2020-12-30 17:06:18

标签: javascript fastapi

我遵循了 FastAPI 文档,我正在尝试将使用 js 编写的客户端的文件发送到使用 FastAPI 编写的服务器。

我的 HTML:

<html>
    <head>
        <script src="https://code.jquery.com/jquery-2.0.3.js" integrity="sha256-lCf+LfUffUxr81+W0ZFpcU0LQyuZ3Bj0F2DQNCxTgSI=" crossorigin="anonymous"></script>
        <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
    </head>

    <body>
            <input id='fileid' type='file' value="Load miRNA data"/>
            <input id='fileid2' type='file' value="Load Target data"/>
            <input id='buttonid' type='button' value='Upload' />
    </body>
    <script type="text/javascript" src="./uplaodfiles.js"></script>
 </html>    

我的uploadfiles.js

document.getElementById('buttonid').addEventListener('click', generate);

function generate() {
  let file = document.getElementById("fileid").files[0];
  let file2 = document.getElementById("fileid2").files[0];
  let formData = new FormData();
  formData.append("file",file,file.name)
  formData.append("file2",file2,file2.name)
  console.log(formData)
  axios.post('http://127.0.0.1:8000/actions/upload', formData, {
    headers: {
      'content-Type': 'multipart/form-data'
    }
})
}

action.py

from typing import List
from fastapi import APIRouter,Header,HTTPException,FastAPI, File, UploadFile

router = APIRouter()

import pandas as pd

@router.post('/upload')
def upload_file(files: List[UploadFile] = File(...)):
        print('Arrived')

    

并且无法成功获取文件,并且在服务器端出现错误:

INFO:     127.0.0.1:59210 - "POST /actions/upload HTTP/1.1" 422 Unprocessable Entity

客户:

Uncaught (in promise) Error: Request failed with status code 422
    at e.exports (isAxiosError.js:10)
    at e.exports (isAxiosError.js:10)
    at XMLHttpRequest.l.onreadystatechange (isAxiosError.js:10)

我该如何解决这个问题以及如何使用我在上传端点中收到的那些文件?

1 个答案:

答案 0 :(得分:0)

问题很可能是因为您在端点需要 file1 的名为 file2 的文件时传递参数 Listfiles

我还没有测试过代码,但是基本的想法是用实际文件创建一个数组并将其添加到 FormData 下的 files 名称中。下面的代码应该可以让您了解如何实现目标。

let formData = new FormData();
formData.append("files",[file, file2]);

或者,如果我的解决方案不起作用,您可以尝试使用这个Uploading multiple files using formData(),但同样,我的回答主要是为了引导您走上正确的道路。