<el-upload class="avatar-uploader" :action="uploadUrl" :headers="headers" :show-file-list="false" :on-success="yonghutouxiangHandleAvatarSuccess"> <img :style='{ "border": "1px dashed #00B9EA", "cursor": "pointer", "color": "rgba(64, 158, 255, 1)", "borderRadius": "6px", "textAlign": "center", "background": "rgba(246, 246, 246, 1)", "width": "200px", "fontSize": "32px", "lineHeight": "80px", "height": "200px" }' v-if="sessionForm.touxiang" :src="baseUrl + sessionForm.touxiang" class="avatar"> <i v-else class="el-icon-plus avatar-uploader-icon"></i> </el-upload>
时间: 2023-07-03 22:24:32 浏览: 208
这是一个使用 Element UI 中的 el-upload 组件实现图片上传的代码示例。这个组件可以用于上传图片、文件等类型的文件。
其中,`:action` 属性指定了上传文件的接口地址,`:headers` 属性可以设置上传请求的头部信息,`:show-file-list` 属性设置为 `false` 表示不显示已上传的文件列表,`:on-success` 属性指定了上传成功后的回调函数。
在组件中,我们使用了一个 `img` 标签来显示已经上传的图片,如果用户还没有上传图片,我们显示一个加号图标。在回调函数 `yonghutouxiangHandleAvatarSuccess` 中,我们可以处理上传成功后的逻辑,比如将上传的图片地址保存到数据库中。
需要注意的是,在上传文件时,我们需要设置上传的文件类型、大小等限制,以保证上传的文件符合我们的需求。
相关问题
<el-upload class="avatar-uploader" action="https://jsonplaceholder.typicode.com/posts/" :show-file-list="false" :on-success="handleAvatarSuccess" :before-upload="beforeAvatarUpload"> <img v-if="beforPicture" :src="beforPicture" class="avatar"> <i v-else class="el-icon-plus avatar-uploader-icon"></i> </el-upload>怎么变成http样式
你可以将该代码段中的 `https` 替换为 `http` 即可将其变成 `http` 样式,如下所示:
```html
<el-upload
class="avatar-uploader"
action="http://jsonplaceholder.typicode.com/posts/"
:show-file-list="false"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload"
>
<img v-if="beforPicture" :src="beforPicture" class="avatar" />
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
```
请注意,使用 `http` 样式并不安全,因为它传输的数据不加密,容易被拦截和窃取。建议使用 `https` 样式来保证数据传输的安全性。
使用<el-upload class="avatar-uploader" action="https://jsonplaceholder.typicode.com/posts/" :show-file-list="false" :on-success="handleAvatarSuccess" :before-upload="beforeAvatarUpload"> <img v-if="imageUrl" :src="imageUrl" class="avatar"> <i v-else class="el-icon-plus avatar-uploader-icon"></i> </el-upload>实现上传功能并回显图片
这段代码使用了 Element UI 的 el-upload 组件来实现上传功能并回显图片。其中,action 属性指定了上传文件的地址,:show-file-list="false" 表示不显示上传文件列表,:on-success="handleAvatarSuccess" 表示上传成功后的回调函数,:before-upload="beforeAvatarUpload" 表示上传前的回调函数。
在 data 中定义了 imageUrl 变量来保存上传成功后的图片地址。
handleAvatarSuccess 函数会在上传成功后被调用,将上传成功后的图片地址赋值给 imageUrl 变量,以便在页面上回显图片。
beforeAvatarUpload 函数会在上传之前被调用,用于校验上传文件的类型和大小。
完整的代码如下:
```
<template>
<el-upload
class="avatar-uploader"
action="https://jsonplaceholder.typicode.com/posts/"
:show-file-list="false"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload">
<img v-if="imageUrl" :src="imageUrl" class="avatar">
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
</template>
<script>
export default {
data() {
return {
imageUrl: ''
};
},
methods: {
handleAvatarSuccess(res, file) {
this.imageUrl = URL.createObjectURL(file.raw);
},
beforeAvatarUpload(file) {
const isJPG = file.type === 'image/jpeg';
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isJPG) {
this.$message.error('上传头像图片只能是 JPG 格式!');
}
if (!isLt2M) {
this.$message.error('上传头像图片大小不能超过 2MB!');
}
return isJPG && isLt2M;
}
}
};
</script>
```
阅读全文