uniapp使用uview2上传图片功能

官网地址Upload 上传 | uView 2.0 - 全面兼容 nvue 的 uni-app 生态框架 - uni-app UI 框架

前提,需要下载vuew2插件

html 复制代码
<view class="upload">
    <view class="u-demo-block__content">
        <view class="u-page__upload-item">
            <u-upload :fileList="scoreFileList" @afterRead="afterRead" @delete="deletePic"
                multiple :maxCount="9" :previewFullImage="true"></u-upload>
        </view>
    </view>
</view>
javascript 复制代码
data {  
 scoreFileList: []
}
javascript 复制代码
     deletePic(event) {
            this.scoreFileList.splice(event.index, 1)
        },
        // 新增图片
        async afterRead(event) {
            let lists = [].concat(event.file);
            let fileListLen = this.scoreFileList.length;
            lists.map((item) => {
                this.scoreFileList.push({
                    ...item,
                    status: "uploading",
                    message: "上传中",
                });
            });
            for (let i = 0; i < lists.length; i++) {
                const result = await this.uploadFilePromise(lists[i].url);
                let item = this.scoreFileList[fileListLen];
                this.scoreFileList.splice(
                    fileListLen,
                    1,
                    Object.assign(item, {
                        status: "success",
                        message: "",
                        url: result,
                    })
                );
                fileListLen++;
            }
        },
        uploadFilePromise(url) {
            return new Promise((resolve, reject) => {
                uni.uploadFile({
                    url: 'http://www.example.com/upload', // 仅为示例,非真实的接口地址
                    filePath: url,
                    name: "file",
                    success: (uploadFileRes) => {
                        let res = JSON.parse(uploadFileRes.data);
                        resolve(res.message);
                    },
                    fail: (err) => {
                        console.log(err);
                    },
                });
            });
        },

获取图片地址,数组形式

["4213.png", "6816.png"]

javascript 复制代码
 let detai_thumbs = this.scoreFileList.map((item) => item.url);
相关推荐
赵大仁4 分钟前
深入理解 Vue 3 中的具名插槽
前端·javascript·vue.js·react.js·前端框架·ecmascript·html5
一雨方知深秋9 分钟前
v-bind 操作 class(对象,数组),v-bind 操作 style
前端·css·vue.js·html·style·class·v-bind
安晴晚风1 小时前
从0开始在linux服务器上部署SpringBoot和Vue
linux·运维·前端·数据库·后端·运维开发
前端小小王2 小时前
pnpm、Yarn 和 npm 的区别?
前端·npm·node.js
supermapsupport2 小时前
使用npm包的工程如何引入mapboxgl-enhance/maplibre-gl-enhance扩展包
前端·webpack·npm·supermap·mapboxgl
牛奔2 小时前
windows nvm 切换node版本后,npm找不到
前端·windows·npm·node.js
鱼大大博客2 小时前
Edge SCDN酷盾安全重塑高效安全内容分发新生态
前端·安全·edge
鸭梨山大。2 小时前
NPM组件包 vant部分版本内嵌挖矿代码
前端·安全·npm·node.js·vue
蟾宫曲7 小时前
在 Vue3 项目中实现计时器组件的使用(Vite+Vue3+Node+npm+Element-plus,附测试代码)
前端·npm·vue3·vite·element-plus·计时器
秋雨凉人心7 小时前
简单发布一个npm包
前端·javascript·webpack·npm·node.js