ifram+form方式实现文件、图片上传、预览

2021-06-26 06:03

阅读:659

YPE html>

标签:win   onchange   add   iframe   function   前端   tar   img   this   

1、前端代码

"en">"UTF-8">
    Title
    
"fm1" action="/upload_img.html" method="POST" enctype="multipart/form-data" target="ifra1"> "file" name="k1" onchange="uploadFile();" />

预览

"preview">

 

2、后端代码

def upload_img(request):
    ret={status:True,data:None}
    obj = request.FILES.get(k1)
    print(obj)
    file_path = os.path.join(static,obj.name)
    f = open(file_path,wb)
    for line in obj.chunks():
        f.write(line)

    f.close()
    ret[data]=file_path
    return HttpResponse(json.dumps(ret))

 

ifram+form方式实现文件、图片上传、预览

标签:win   onchange   add   iframe   function   前端   tar   img   this   

原文地址:http://www.cnblogs.com/xiaoqianghuihui/p/7152055.html


评论


亲,登录后才可以留言!