flask上傳文件時request.files爲空的解決辦法

在作上傳文件的時候遇到request.files是空html

緣由在於html中的表單form沒有指明post

enctype="multipart/form-data"
<form method="post" action="/test" enctype="multipart/form-data">
        <input type="file" name="test">
        <button type="submit">上傳</button>
    </form>

以上表單提交的時候就能獲取到spa

相關文章
相關標籤/搜索