In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
这篇文章主要介绍了微信小程序开发文件上传功能怎么实现的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇微信小程序开发文件上传功能怎么实现文章都会有所收获,下面我们一起来看看吧。
保存图片,我认为有两处需要保存
1、选择图片的时候,使用wx.chooseImage选择图片的时候保存
2、下载图片的时候,使用wx.downloadFile下载图片的时候保存
代码片段
1、选择图片的时候
js代码
frontimage:function(){
var_this=this;
//选择图片
wx.chooseImage({
count:1,// 默认9
sizeType:[\'original\',\'compressed\'],// 可以指定是原图还是压缩图,默认二者都有
sourceType:[\'album\',\'camera\'],// 可以指定来源是相册还是相机,默认二者都有
success:function(res){
// 成功,把url赋值至wxml展示图片
_this.setData({
FilePaths:res.tempFilePaths
})
// 保存图片
wx.saveFile({
//之前被这个地址坑了好几次
tempFilePath:res.tempFilePaths,//这个地址是图片地址,而不是你保存的目的地址
success:function(res){
console.log(保存图片成功)
},
fail:function(res){
console.log(保存图片失败)
console.log(res)
}
})
}
})
}
2、下载图片的时候
wx.downloadFile({
url: res.data.body[0].URL, //图片的下载地址
success: function (res) { //图片下载成功
wx.saveFile({
tempFilePath: res.tempFilePath, //下载后的图片临时地址
success: function (res) {
console.log(保存图片成功)
},
fail: function () {
console.log(保存图片失败)
}
})
}, fail: function (res) {
console.log(图片下载失败)
}
})
图片保存成功后,在保存成功的地方将返回的res.savedFilePath(这是成功保存后的保存路径)放入缓存中,在需要用图片的时候根据缓存存的url就可以取到图片了。
关于"微信小程序开发文件上传功能怎么实现"这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对"微信小程序开发文件上传功能怎么实现"知识都有一定的了解,大家如果还想学习更多知识,欢迎关注行业资讯频道。
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.