收藏
回答

chooseImage 回调success,fail,complete怎么不执行呢?

  chooseImage: function (e{
    var that = this;
    wx.chooseImage({
        sizeType: ['original''compressed'], // 可以指定是原图还是压缩图,默认二者都有
        sourceType: ['album''camera'], // 可以指定来源是相册还是相机,默认二者都有
        successfunction (res{
            // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
            console.log('选择的图片是:'+that.data.files);
            that.setData({
                files: that.data.files.concat(res.tempFilePaths)
            });
            console.log('选择的图片是:'+that.data.files);
        },
        fail:function(){
            console.log('错误!');
        },
        complete:function(){
            console.log('对错都执行!');
        }
    })
}

 苹果机
回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容
问题标签