分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

利用iframe和form上传和预览图片

发布时间:2023-09-06 02:00责任编辑:郭大石关键词:暂无标签

URL文件

from django.contrib import adminfrom django.urls import pathfrom app01 import viewsurlpatterns = [ ???path(‘admin/‘, admin.site.urls), ???path(‘upload.html/‘, views.upload), ???path(‘upload_img.html/‘, views.upload_img),]

views文件

from django.shortcuts import render,HttpResponseimport json# Create your views here.def upload(request): ???return render(request,‘upload.html‘)def upload_img(request): ???import os ???import uuid ???nid = str(uuid.uuid4()) ???ret = {‘status‘:True,‘data‘:None,‘message‘:None} ???obj = request.FILES.get(‘k3‘) ???file_path = os.path.join(‘static‘, nid+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))

html文件

<!DOCTYPE html><html lang="en"><head> ???<meta charset="UTF-8"> ???<title>Title</title> ???<style> ???????.btn{ ???????????display: inline-block; ???????????padding: 5px 10px; ???????????color: orangered; ???????} ???</style></head><body> ???<iframe style="display: none" id="iframe1" name="ifra1"></iframe> ???<form id="fm1" action=‘/upload_img.html/‘ method="POST" enctype="multipart/form-data" target="ifra1"> ???????<input type="file" name="k3" onchange="uploadFile()"/> ???</form> ????<h3>预览</h3> ???<div id="prevl"> ???</div> ???<script src="/static/js/jquery-3.3.1.js"></script> ???<script> ???????function uploadFile(){ ???????????document.getElementById(‘iframe1‘).onload = reloadIframe1; ???????????document.getElementById(‘fm1‘).submit(); ???????} ???????function reloadIframe1() { ???????????var content = this.contentWindow.document.body.innerHTML; ???????????var obj = JSON.parse(content); ???????????console.log(obj.data); ???????????var tag = document.createElement(‘img‘); ???????????tag.src=‘/‘+obj.data; ???????????$(‘#prevl‘).empty().append(tag) ???????} ???</script></body></html>

利用iframe和form上传和预览图片

原文地址:https://www.cnblogs.com/lhqlhq/p/9202874.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved