ios 调用wx.chooseImage没有反应.没有报错,没有提示
相册选取
albumSel() {
var that = this;
wx.chooseImage({
count: 1,
sourceType: “album”,
success: function(res) {
var path = res.tempFilePaths[0];
that.setData({
imgPath: path
})
这是js代码,安卓没有问题,ios就没有反应了