将图片上传到服务器

时间:2019-11-12 17:27:38

标签: python html flask

我正在尝试为我的Web应用程序编写一个功能,该功能将上传的图片保存到服务器上的文件夹中。 我正在使用flask和python。

到目前为止,我有html页面,


<div class='upload_pic'>
        <form action="/profile" methods='POST'>
            <b>Upload your a Profile Picture</b><br>
            <input type="file" name="profile_picture" accept="image/*">
            <input type='submit'>
        </form>


    </div> 

但是我对如何从这里继续感到困惑...

我使用GET还是POST?如何将文件保存到文件夹? 如何命名文件以确保它们都有唯一的ID? 以后需要显示图片时,我将如何访问它们?

0 个答案:

没有答案