我也出现了这个问题,请问解决了吗?
同样的代码,不同版本的工具打开,会出现脚本错误或者未正确调用 Page()同样的小程序代码,在两个不同版本的微信开发者工具上打开,其中一个会报错,调试基础库设置一样也是无效果,求解
2018-08-24代码片段如下,希望能够尽快得到解决 data= { files: [] } methods = { chooseImage (event) { var that = this; wx.chooseImage({ count: 8, // 一次最多可以选择2张图片一起上传 sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有 sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有 success: function (res) { var imgeList=that.data.files.concat(res.tempFilePaths); that.files= imgeList } }) }, deleteImage: function (e) { var that = this; var files = that.data.files; var index = e.currentTarget.dataset.index;//获取当前长按图片下标 console.log(index) wx.showModal({ title: '提示', content: '确定要删除此图片吗?', success: function (res) { if (res.confirm) { console.log('点击确定了'); files.splice(index, 1); } else if (res.cancel) { console.log('点击取消了'); return false; } that.setData({ files }); } }) },
拉取相册选择图片安卓正常,IOS上面需要再点击一次拉取才能获取到图片拉取相册选择图片,在安卓上面选择之后就可以在页面中显示,IOS上面选择之后并没有显示,需要再点击一次拉取请求才会在页面上显示,卡了几天了,求解
2018-07-23