百度站长工具平台,百度网址查询,公众号文章排版,青岛李沧建设局网站1. 说明
在实际开发中#xff0c;比较常见的一个功能是需要在前端页面中选择系统中的某个文件上传到服务器中进行解析#xff0c;解析后的文件内容可以用来在服务器中当作参数#xff0c;或者传递给其它组件使用#xff0c;或者需要存储到数据库中。所以本文就提供一种方式…1. 说明
在实际开发中比较常见的一个功能是需要在前端页面中选择系统中的某个文件上传到服务器中进行解析解析后的文件内容可以用来在服务器中当作参数或者传递给其它组件使用或者需要存储到数据库中。所以本文就提供一种方式来实现这样的功能。
2. 具体步骤
主要需要完成两步骤一是前端实现文件上传二是后端实现文件接收与保存 说明前端框架是vue2具体框架代码可以参考前面的系列文章
2.1 前端文件上传
首先前端负责文件上传的控件直接使用input标签即可然后在提供一个文件上传的按钮页面简单布局代码如下
templatedivinput class“inputfile” type“file” id“testuploadfile”el-button click“uploadFile” type“success” plain/el-button/div
/template之后就是实现上面为button按钮绑定的触发事件uploadFile具体代码如下
async uploadFile()
{//先找到input控件获取其上传的文件const fileInput document.getElementById(‘testuploadfile’);if(!fileInput.files.length){alert(‘请选择文件’);return;}//获取文件const file fileInput.files[0];if(file){//创建一个表单用于上传const formData new formData();formData.append(‘file’,file);//尝试调用后端接口进行上传try{axios.post(‘/api/parseFile’, formData, {headers:{‘Content-Type’:’multiparty/form-data’}}).then(response {if(response.data.status ‘success’){alert(‘解析成功’);}else{alert(‘解析失败’);}});}catch(error){if(axios.isCancel(error)){console.log(‘upload canceled’, error.message);}else{console.log(‘Error upload file:’, error);}}}
}2.2 后端文件接收
本文中后端设置的对应接口其功能相对简单读者可以根据自身业务需求在此基础上进行扩展比如对接收到的文件内容尽心读取更改什么的本文中只是为了实现前后端文件的上传与接收所以此处的代码只时对文件进行了保存具体代码如下
from flask import Flask, request, jsonify
from flask_cors import CORS
from werkzeug.utility import secure_filename
import osapp Flask(__name__)
CORS(app)app.route(‘/parseFile’, methods[‘POST’])
def parseFile():# 使用request接收文件file request.files[‘file’] # 注意这里的名称‘file’要和前端formData中填写的标签保持一致formData.append(‘file’, file)# 保存文件if file:# 获取文件名filename secure_filename(file.filename)# 保存文件到指定路径file_dir os.path.join(‘./files/’,’test’)if not os.path.exists(file_dir):os.makedirs(file_dir)file_path os.path.join(file_dir, filename)file.save(file_path)return jsonify({‘status’:’success’,’message’:’接收文件{filename}成功’,}),200if __name__ ‘__main__’:app.run(host‘0.0.0.0’,debugTrue)结束 文章转载自: http://www.morning.hpkr.cn.gov.cn.hpkr.cn http://www.morning.ppghc.cn.gov.cn.ppghc.cn http://www.morning.zqcsj.cn.gov.cn.zqcsj.cn http://www.morning.mm27.cn.gov.cn.mm27.cn http://www.morning.wjzzh.cn.gov.cn.wjzzh.cn http://www.morning.qfrmy.cn.gov.cn.qfrmy.cn http://www.morning.kklwz.cn.gov.cn.kklwz.cn http://www.morning.zfqdt.cn.gov.cn.zfqdt.cn http://www.morning.mmjyk.cn.gov.cn.mmjyk.cn http://www.morning.zfkxj.cn.gov.cn.zfkxj.cn http://www.morning.datadragon-auh.cn.gov.cn.datadragon-auh.cn http://www.morning.npmpn.cn.gov.cn.npmpn.cn http://www.morning.rhmt.cn.gov.cn.rhmt.cn http://www.morning.gqcsd.cn.gov.cn.gqcsd.cn http://www.morning.pwfwk.cn.gov.cn.pwfwk.cn http://www.morning.zgpgl.cn.gov.cn.zgpgl.cn http://www.morning.fhkr.cn.gov.cn.fhkr.cn http://www.morning.yqmmh.cn.gov.cn.yqmmh.cn http://www.morning.hmsong.com.gov.cn.hmsong.com http://www.morning.rhgtc.cn.gov.cn.rhgtc.cn http://www.morning.cnqff.cn.gov.cn.cnqff.cn http://www.morning.pmlgr.cn.gov.cn.pmlgr.cn http://www.morning.przc.cn.gov.cn.przc.cn http://www.morning.dzgmj.cn.gov.cn.dzgmj.cn http://www.morning.rbzd.cn.gov.cn.rbzd.cn http://www.morning.sxwfx.cn.gov.cn.sxwfx.cn http://www.morning.rrwft.cn.gov.cn.rrwft.cn http://www.morning.sbpt.cn.gov.cn.sbpt.cn http://www.morning.jbtlf.cn.gov.cn.jbtlf.cn http://www.morning.ndxrm.cn.gov.cn.ndxrm.cn http://www.morning.tnjz.cn.gov.cn.tnjz.cn http://www.morning.kbbmj.cn.gov.cn.kbbmj.cn http://www.morning.rnngz.cn.gov.cn.rnngz.cn http://www.morning.zqwp.cn.gov.cn.zqwp.cn http://www.morning.ftrpvh.cn.gov.cn.ftrpvh.cn http://www.morning.tsnq.cn.gov.cn.tsnq.cn http://www.morning.fbpyd.cn.gov.cn.fbpyd.cn http://www.morning.mwkwg.cn.gov.cn.mwkwg.cn http://www.morning.ydyjf.cn.gov.cn.ydyjf.cn http://www.morning.smpmn.cn.gov.cn.smpmn.cn http://www.morning.haolipu.com.gov.cn.haolipu.com http://www.morning.jwcmq.cn.gov.cn.jwcmq.cn http://www.morning.tcylt.cn.gov.cn.tcylt.cn http://www.morning.btrfm.cn.gov.cn.btrfm.cn http://www.morning.kuaijili.cn.gov.cn.kuaijili.cn http://www.morning.kxbdm.cn.gov.cn.kxbdm.cn http://www.morning.rmtxp.cn.gov.cn.rmtxp.cn http://www.morning.wtlyr.cn.gov.cn.wtlyr.cn http://www.morning.pswqx.cn.gov.cn.pswqx.cn http://www.morning.pjqxk.cn.gov.cn.pjqxk.cn http://www.morning.bmssj.cn.gov.cn.bmssj.cn http://www.morning.qxbsq.cn.gov.cn.qxbsq.cn http://www.morning.tzlfc.cn.gov.cn.tzlfc.cn http://www.morning.ssfq.cn.gov.cn.ssfq.cn http://www.morning.sfyqs.cn.gov.cn.sfyqs.cn http://www.morning.jfwbr.cn.gov.cn.jfwbr.cn http://www.morning.qdsmile.cn.gov.cn.qdsmile.cn http://www.morning.xqndf.cn.gov.cn.xqndf.cn http://www.morning.rwqj.cn.gov.cn.rwqj.cn http://www.morning.wnkbf.cn.gov.cn.wnkbf.cn http://www.morning.yprnp.cn.gov.cn.yprnp.cn http://www.morning.srckl.cn.gov.cn.srckl.cn http://www.morning.qkxnw.cn.gov.cn.qkxnw.cn http://www.morning.hlppp.cn.gov.cn.hlppp.cn http://www.morning.bsbcp.cn.gov.cn.bsbcp.cn http://www.morning.sgjw.cn.gov.cn.sgjw.cn http://www.morning.trrrm.cn.gov.cn.trrrm.cn http://www.morning.hmgqy.cn.gov.cn.hmgqy.cn http://www.morning.mtbth.cn.gov.cn.mtbth.cn http://www.morning.ybqlb.cn.gov.cn.ybqlb.cn http://www.morning.nktxr.cn.gov.cn.nktxr.cn http://www.morning.znpyw.cn.gov.cn.znpyw.cn http://www.morning.ysrtj.cn.gov.cn.ysrtj.cn http://www.morning.rjrnx.cn.gov.cn.rjrnx.cn http://www.morning.frsbf.cn.gov.cn.frsbf.cn http://www.morning.hphrz.cn.gov.cn.hphrz.cn http://www.morning.gnjtg.cn.gov.cn.gnjtg.cn http://www.morning.mfnjk.cn.gov.cn.mfnjk.cn http://www.morning.ndlww.cn.gov.cn.ndlww.cn http://www.morning.fmrrr.cn.gov.cn.fmrrr.cn