爱问知识人 爱问教育 医院库

详解Element-UI中上传的文件前端处理

首页

详解Element-UI中上传的文件前端处理


        

提交回答
好评回答
  • 2023-03-07 09:30:00
      Element-UI对于文件上传组件的功能点着重于文件传递到后台处理,所以要求action为必填属性。但是如果需要读取本地文件并在前端直接处理,文件就没有必要传递到后台,比如在本地打开一个JSON文件,利用JSON文件在前端进行动态展示等等。
      
    下面就展示一下具体做法:首先定义一个jsonContent, 我们的目标是将本地选取的文件转换为JSON赋值给jsonContent然后我们的模板文件是利用el-dialog和el-upload两个组件组合:这里停止文件自动上传模式:auto-upload="false"<el-button type="primary" @click="dialogVisible = true">Load from File</el-button> <el-dialog title="Load JSON document from file" :visible。
      sync="dialogVisible"> <el-upload :file-list="uploadFiles" action="alert" :auto-upload="false" multiple :on-change="loadJsonFromFile"> <el-button size="small" type="primary">Select a file</el-button> <div slot="tip">upload only jpg/png files, and less than 500kb</div> </el-upload> <span slot="footer"> <el-button type="primary" @click="dialogVisible = false">cancel</el-button> <el-button type="primary" @click="loadJsonFromFileConfirmed">confirm</el-button> </span> </el-dialog>最后通过html5的filereader对变量uploadFiles中的文件进行读取并赋值给jsonContentif (this。
      uploadFiles) { for (let i = 0; i < this。uploadFiles。length; i++) { let file = this。uploadFiles[i] console。log(file。raw) if (!file) continue let reader = new FileReader() reader。
      onload = async (e) => { try { let document = JSON。parse(e。target。result) console。log(document) } catch (err) { console。
      log(`load JSON document from file error: ${err。message}`) this。showSnackbar(`Load JSON document from file error: ${err。message}`, 4000) } } reader。
      readAsText(file。raw) } }为方便测试,以下是完整代码:另外一篇文章是介绍如何将jsonContent变量中的JSON对象保存到本地文件<template> <div> <el-button type="primary" @click="dialogVisible = true">Load from File</el-button> <el-dialog title="Load JSON document from file" :visible。
      sync="dialogVisible"> <el-upload :file-list="uploadFiles" action="alert" :auto-upload="false" multiple :on-change="loadJsonFromFile"> <el-button size="small" type="primary">Select a file</el-button> <div slot="tip">upload only jpg/png files, and less than 500kb</div> </el-upload> <span slot="footer"> <el-button type="primary" @click="dialogVisible = false">cancel</el-button> <el-button type="primary" @click="loadJsonFromFileConfirmed">confirm</el-button> </span> </el-dialog></div> </template> <script>export default { data () { return { // data for upload files uploadFilename: null, uploadFiles: [], dialogVisible: false } }, methods: { loadJsonFromFile (file, fileList) { this。
      uploadFilename = file。name this。uploadFiles = fileList }, loadJsonFromFileConfirmed () { console。log(this。uploadFiles) if (this。
      uploadFiles) { for (let i = 0; i < this。uploadFiles。length; i++) { let file = this。uploadFiles[i] console。log(file。raw) if (!file) continue let reader = new FileReader() reader。
      onload = async (e) => { try { let document = JSON。parse(e。target。result) console。log(document) } catch (err) { console。
      log(`load JSON document from file error: ${err。message}`) this。showSnackbar(`Load JSON document from file error: ${err。message}`, 4000) } } reader。
      readAsText(file。raw) } } this。dialogVisible = false } }}</script>。

    一***

    2023-03-07 09:30:00

类似问题

换一换
  • 电脑/网络 相关知识

  • 电脑网络技术
  • 电脑网络

相关推荐

正在加载...
最新资料 推荐信息 热门专题 热点推荐
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200

热点检索

  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
返回
顶部
帮助 意见
反馈

确定举报此问题

举报原因(必选):