uniapp上传图片

单张上传 

前端:

    methods: {
            takePhoto() {
                const self = this
                // 从相册选择6张图
                uni.chooseImage({
                    count: 6,
                    sizeType: ['original', 'compressed'],
                    // sourceType: ['album'],
                    success: function(res) {
                        console.log(res.tempFiles[0])
                        uni.uploadFile({
                            url: 'http://192.168.2.106:9888/qt/tq/uploadFile', //仅为示例,非真实的接口地址
                            // header: {
                            //     "Content-Type": "multipart/form-data"
                            // },
                            filePath: res.tempFilePaths[0],
                            name: 'file',
                            formData: {

                            },
                            success: (uploadFileRes) => {
                                console.log(uploadFileRes.data);
                            }
                        });

                     
                    }
                });
            }
        }

 

后端:

  @AnonymousAccess // 忽略身份验证的注解
    @ApiOperation(value = "测试app上传图片", notes = "测试app上传图片", httpMethod = "POST")
//    @ApiImplicitParams({@ApiImplicitParam(name = "id", value = "地区id")})
    @RequestMapping("/uploadFile")
    public ReturnJson uploadFile(@RequestParam("file") MultipartFile file) throws IOException {
        System.out.println(file);
        String str = "\\";
        String substring = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(str) + 1);

        //判断文件是否存在 如果已经存在,先删除
        File temp = new File("D:\\pic\\" + substring);
        if (temp.exists()) {
            temp.delete();
        }
        //将文件写入到指定路径
        FileOutputStream out = new FileOutputStream("D:\\pic\\" + substring);
        out.write(file.getBytes());
        out.flush();
        out.close();
        return null;
    }

 

多张上传:

多端开发时,考虑官方文档说明,小程序不支持多传,所以多端考虑,循环实现多张上传:

methods: {
            takePhoto() {
                const self = this
                // 从相册选择6张图
                uni.chooseImage({
                    count: 6,
                    sizeType: ['original', 'compressed'],
                    // sourceType: ['album'],
                    success: function(res) {
                        self.urls = res.tempFilePaths;
                        for (var i = 0; i < res.tempFilePaths.length; i++) {
                            console.log(res.tempFilePaths[i])
                            uni.uploadFile({
                                url: 'http://192.168.2.106:9888/qt/tq/uploadFile', //仅为示例,非真实的接口地址
                                // header: {
                                //     "Content-Type": "multipart/form-data"
                                // },
                                filePath: res.tempFilePaths[i],
                                name: 'file',
                                formData: {
                            
                                },
                                success: (uploadFileRes) => {
                                    console.log(uploadFileRes.data);
                                }
                            });
                        }

                    }
                });
            }
        }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

励志重写JDK

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值