在小程序里保存网络图片至手机相册,怎么设置在小程序后台管理配置域名?
saveImage() {
wepy.showLoading({
title: '保存中...',
mask: true,
});
wx.downloadFile({
url:
'http://upload.jianshu.io/admin_banners/web_images/4435/c1d3ca63353c8bd527f0d781605516cb5b266d02.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/1250/h/540',
success : (res) {
if (res.statusCode === 200) {
let img = res.tempFilePath;
wx.saveImageToPhotosAlbum({
filePath: img,
success(res) {
wepy.showToast({
title: '保存成功',
icon: 'success',
duration: 2000
});
},
fail(res) {
wepy.showToast({
title: '保存失败',
icon: 'success',
duration: 2000
});
}
});
}
}
});
}
这个wx.donwloadFile 域名我怎么配置啊? 我并不是 下载 我服务器的 本地的文件,我保存的 都是 网络URL 。 这个网络URL 都是 百度图片里的 。乱七八槽的。 没法填写域名配置啊?