WeChat Mini Programs calls the API wx.chooseImage () to obtain local photo albums
after the selection, click finish to jump to Mini Program"s home page, and then there is no more
Code:
chooseImage(){
let that = this;
wx.chooseImage({
count: 1, // 9
sizeType: ["original", "compressed"], //
sourceType: ["album", "camera"], //
success(res) {
// tempFilePathimgsrc
this.setData({
src: res.tempFilePaths[0],
srcChanged: true
});
}
});
}
I just got in touch with Mini Program. Has any boss ever met with a solution? Thank you very much