我想从 request.form["file"] 写入文件,但我做不到。
我的contact.html 在这里。
客户端代码是这样的......
<form action="contact" method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="submit">
</form>
服务器端是这样的
filestorage = request.files["file"]
print type(_file) #-> <FileStorage: u"__proto.png" ("img/png")>
# I tried below this , but it doesn't work.
f = open("tmp.png","wb")
f.write(filestorage)
我想写这个是png文件到某处上传的文件。你有什么主意吗?
提前致谢。