django上传文件
Posted 李瑞鑫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django上传文件相关的知识,希望对你有一定的参考价值。
html示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div>首页</div> <form action="index/" method="post" enctype="multipart/form-data" > <input type="file" name="upload" /> <input type="submit" value="提交" /> </form> </body> </html>
views函数设置
def index(request): if request.method == "GET": return render(request,"index.html") elif request.method == "POST": obj = request.FILES.get("upload") print(obj.name) f = open(obj.name, "wb") for line in obj.chunks(): f.write(line) f.close() return render(request,"index.html")
以上是关于django上传文件的主要内容,如果未能解决你的问题,请参考以下文章
Alamofire 文件上传出现错误“JSON 文本未以数组或对象开头,并且允许未设置片段的选项”