• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

小程序上传多张图片

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

小程序上传图片时,对应的uploadFile接口一次只能上传一张,这里选择后台提供一个专门上传图片的接口上传图片后返回链接,再调用比如说评论接口,将返回的图片链接带上后,再一起上传。

uploadImg (pictures) {
        if (pictures.length) {
            const initNum = pictures.length
            let succNum = 0 //统计上传图片成功的数量
            const token = Taro.getStorageSync(\'token\')
            pictures.map((pic: any) => {
                Taro.uploadFile({
                    url: \'upload_img\',
                    filePath: pic.url,
                    name: \'img\',
                    header: {
                        \'Authentication\': token,
                    },
                }).then((res: any) => {
                    
                    if (res.data.status === \'SUCC\') {
                        let uploadImgs: string[] = this.state.uploadImgs
                        uploadImgs.push(res.data.imgurl)
                        this.setState({
                            uploadImgs,
                        }, () => {
                            succNum += 1
                            if (initNum === succNum) {
                    // 调用评论上传方法
this.httpComment()
                    } }) }
else { $toast(\'上传图片失败,请重试!\') return false } }) }) } }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
运算符重载小程序(对Data类的++,,的重载)发布时间:2022-07-18
下一篇:
小程序相册授权后保存图片到相册发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap