破案了,微信版本问题,原8.0.18升级成8.0.48就没问题了
使用wx:cropImage显示cropImage:fail:not supported?chooseImage: function () { const that = this; const curFileId = that.data.loginUserInfo.avatarUrl; console.log('bbbb') wx.chooseMedia({ count: 1, // 一次只能选择一张图片 mediaType: ['image'], sourceType: ['album', 'camera'], // 可以从相册选择或拍照 success: function (res) { console.log('aaaa') wx.cropImage({ src: res.tempFiles[0].tempFilePath, // 图片路径 cropScale: '1:1', // 裁剪比例 success: function (res) { ...... }, fail: function(err){ console.log(err) } }) }, fail: function (error) { console.error('选择图片失败', error); }, }); }, [图片] 真机调试报错,开发工具调试不会报错,但是不显示裁剪框。版本库我试了2.30.4、3.2.0、3.1.5 都是一样的问题。搜索也没有搜出类似的问题
2023-11-16