微信小程序选择图片上传到服务器

微信小程序上传图片到服务器

<view class="pic-container">
        <view class="pic-title">请上传身份证正反面照片</view>
        <view class="pic-warp">
            <view class="pic-list">
                <view class="pic-btn" hidden="{{isHideCardZ}}" catchtap="chooseImage" data-type="z">
                    <image src="../images/jia.png" mode="aspectFill"></image>
                    <text>身份证正面照片</text>
                </view>
                <view class="pic-image" hidden="{{!isHideCardZ}}" catchtap="chooseImage" data-type="z"><image src="{{cardImageZ}}" mode="aspectFill"></image></view>
            </view>
            <view class="pic-list">
                <view class="pic-btn" hidden="{{isHideCardF}}" catchtap="chooseImage" data-type="f">
                    <image src="../images/jia.png" mode="aspectFill"></image>
                    <text>身份证反面照片</text>
                </view>
                <view class="pic-image" hidden="{{!isHideCardF}}" catchtap="chooseImage" data-type="f"><image src="{{cardImageF}}" mode="aspectFill"></image></view>
            </view>
        </view>
    </view>
chooseImage(e) {
        var _this = this;
        var _self = e.currentTarget.dataset;
        wx.showActionSheet({
            itemList: ["从相册选择", "拍照"],
            itemColor: "#333",
            success: function(ret) {
                if (ret.tapIndex + 1 != 0) {
                    switch (ret.index) {
                        case 1: //从相册选择
                            var sourceType = ['album'];
                            break;
                        case 2: //拍照
                            var sourceType = ['camera'];
                            break;
                    }
                    wx.chooseImage({
                        count: 9, // 最多可以选择的图片张数,默认9
                        sizeType: ['original', 'compressed'], // original 原图,compressed 压缩图,默认二者都有
                        sourceType: sourceType, // album 从相册选图,camera 使用相机,默认二者都有
                        success: function(res) {
                            // success
                            //console.log(res)
                            wx.showLoading({
                                title: '图片获取中...',
                            })
                            _this.uploadImage(res.tempFilePaths[0], (res) => {
                                wx.hideLoading();
                                if (_self.type == "z") {
                                    _this.setData({
                                        isHideCardZ: true,
                                        cardImageZ: res.data[0]
                                    });
                                } else {
                                    _this.setData({
                                        isHideCardF: true,
                                        cardImageF: res.data[0]
                                    });
                                }
                            });
                        },
                        fail: function() {
                            // fail

                        },
                        complete: function() {
                            // complete
                        }
                    })
                }
            },
            fail: function(ret) {

            }
        })
    },
    //上图片上传到服务器
    uploadImage(filePath, callback) {
        var _this = this;
        var timer = setTimeout(() => {
            // console.log(filePath);
            wx.uploadFile({
                url: app.globalData.url + "api/upload",
                header: {
                    'content-type': 'multipart/form-data',
                },
                filePath: filePath,
                name: 'pic',
                formData: {
                    image: filePath
                },
                success: function(ret) {
                    // console.log(JSON.stringify(ret));
                    wx.hideLoading();
                    if (ret.data.status == 1000) {
                        wx.showToast({
                            icon: 'none',
                            duration: 3000,
                            title: ret.data.msg,
                        })
                        return false;
                    } else if (ret.statusCode == 404) {
                        wx.showToast({
                            icon: 'none',
                            duration: 3000,
                            title: '数据请求地址未找到',
                        })
                    } else {
                        typeof ret.data != "object" ? ret.data = JSON.parse(ret.data) : '';
                        if (ret) {
                            if (typeof callback == "function" || typeof callback == "object") {
                                var timer = setTimeout(() => {
                                    callback(ret.data);
                                    clearTimeout(timer);
                                }, 300);
                            }
                        } else {
                            wx.showToast({
                                icon: 'none',
                                duration: 3000,
                                title: '图片获取失败,请重试',
                            })
                        }
                    }
                },
                fail: function(res) {
                    // console.log(res);
                    wx.hideLoading();
                    wx.showToast({
                        icon: 'none',
                        duration: 3000,
                        title: '网络请求失败,请确保网络是否正常',
                    })
                }
            });
        }, 10);
    }
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

风如白话

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

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

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

打赏作者

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

抵扣说明:

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

余额充值