vue实现图片上传

实现思路:
1.通过点击事件打开文件夹,选取需要上传的图片
2.拿到图片数据,将其添加到FromData实例对象中
3.将图片数据上传至服务器

定义变量

fileList: []

vue页面


  
            
                点击上传
                
只能上传jpg/png文件,且不超过500kb

 定义方法

 resetForm(formName) {
            this.$refs[formName].resetFields();
        },
        handleRemove(file, fileList) {
            console.log(file,fileList);
        },
        handlePreview(file) {
            console.log(file);
        },
        handleExceed(files, fileList) {
            this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
        },
        beforeRemove(file, fileList) {
            return this.$confirm(`确定移除 ${file.name}?`);
        }

 连接后端API接口,获取路径

//接收图片路径
$cover = $request->file();
$cover = $cover['file'];

已经获取到路径了,根据自己的需求进行上传就可以了

你可能感兴趣的:(Vue,vue.js,elementui,javascript)