element upload ajax,详解Element-UI中上传的文件前端处理

Element-UI对于文件上传组件的功能点着重于文件传递到后台处理,所以要求action为必填属性。但是如果需要读取本地文件并在前端直接处理,文件就没有必要传递到后台,比如在本地打开一个JSON文件,利用JSON文件在前端进行动态展示等等。

下面就展示一下具体做法:

首先定义一个jsonContent, 我们的目标是将本地选取的文件转换为JSON赋值给jsonContent

然后我们的模板文件是利用el-dialog和el-upload两个组件组合:这里停止文件自动上传模式:auto-upload="false"

Load from File

Select a file

upload only jpg/png files, and less than 500kb

cancel

confirm

最后通过html5的filereader对变量uploadFiles中的文件进行读取并赋值给jsonContent

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)

}

}

为方便测试,以下是完整代码:

另外一篇文章是介绍如何将jsonContent变量中的JSON对象保存到本地文件

Load from File

Select a file

upload only jpg/png files, and less than 500kb

cancel

confirm

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

}

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

时间: 2019-08-07

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值