本文实例为大家分享了js实现文件上传的具体代码,供大家参考,具体内容如下 一、目的: 实现上传图片功能 二、效果: 三、思路: 用input标签自带的上传,先隐藏掉,给上传按钮添加
本文实例为大家分享了js实现文件上传的具体代码,供大家参考,具体内容如下
实现上传图片功能
用input标签自带的上传,先隐藏掉,给上传按钮添加点击事件,绑定input的点击事件
//html
<input ref="img-upload-input" class="img-upload-input" type="file" accept=".png, .jpg" @change="submitUpload">
<el-button style="margin-top: 20px" type="primary" @click="handleSelectedImg">选择图片</el-button>
//js
//点击上传按钮
handleSelectedImg() {
this.$refs['img-upload-input'].click()
},
//选好图片之后点击打开按钮
submitUpload(e) {
const files = e.target.files
const rawFile = files[0] // only use files[0]
if (!rawFile) return
this.upload(rawFile)
},
//上传
upload(rawFile) {
this.$refs['img-upload-input'].value = null // fix can't select the same excel
if (!this.beforeUpload) {
return
}
//检查文件是否满足条件
const before = this.beforeUpload(rawFile)
if (before) {
//上传事件
this.uploadSectionFile(this.uploadParams, rawFile)
}
},
beforeUpload(file) {
const isLt1M = file.size / 1024 / 1024 < 50
if (isLt1M) {
return true
}
console.log('上传文件不超过50M', 'warning')
return false
},
uploadSectionFile(params, file) {
let data = params
let fd = new FORMData()// FormData 对象
let fileObj = file// 相当于input里取得的files
fd.append('stationID', data.stationID)
fd.append('date', data.date)
fd.append('file', fileObj)// 文件对象
supplementFile(fd).then(res => {
//调用上传接口
})
}
封装的请求头是(后面发现也不一定要配置这个)
'Content-Type': 'multipart/form-data;'
axiOS request的拦截转换直接return
transformRequest: [function(data) {
// 对 data 进行任意转换处理
return data
}],
1.上传文件的同时要传别的参数怎么办?
可以把参数和文件装在一个文件对象里面
let fd = new FormData()
fd.append('file', file)//文件
fd.append('param1', param)
2.文件大小的限制问题
1)、前端上传文件时限制可选文件大小
2)、后端SpringBoot限制
3)、Nginx配置限制,当前端发送请求后端接收不到的时候,可以检查nginx配置。
--结束END--
本文标题: 原生JS实现文件上传
本文链接: https://lsjlt.com/news/164414.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0