微信小程序圖片的保存方法:1、下載文件資源到本地。2、保存圖片。
具體操作步驟:
1.下載文件資源到本地:客戶端直接發起一個 http get 請求,返回文件的本地臨時路徑。
即:調用函數wx.downloadfile({})
2.保存圖片到系統相冊。
即:調用函數wx.saveimagetophotosalbum({})
具體代碼如下:
.wxml
<button data-image='{{圖片路徑}}' bindtap="saveimage" >保存圖片</button>
.js
saveimage: function (e) {
wx.downloadfile({
url: 服務器http請求 +圖片路徑,
success: function (res) {
var imagefilepath = res.tempfilepath;
if (!util.isnull(imagefilepath)) {
wx.saveimagetophotosalbum({
filepath: imagefilepath,
success: function (data) {
wx.showtoast({
title: "保存成功",
})
}, fail: function (res) {
wx.showtoast({
title: "保存失敗",
})
}
})
}
},
})
},