当前位置:   article > 正文

微信小程序对接阿里云OSS并实现多张图片和视频的上传_微信小程序加载oss服务器图片可以吗

微信小程序加载oss服务器图片可以吗

最近在做微信小程序,涉及到图片(多张)和视频(一条)上传到阿里云服务器,上传完阿里云服务器后再上传至应用服务器也就是公司的后台服务器,其过程也是有点复杂的,所以记录下。

开通oss服务和创建oss存储空间就不说了,配置跨域规则的相关工作后端已经完成了,由于我是负责前端部分的,所以我就从前端说起,如果你也是初次涉及此方面内容,请耐心看下去会帮助你解决问题的。话不多说,直接进入主题。

初次涉及,网上找了网页版的样例,试着了解下

解压打开index.html,长这样

找到upload.js把accessid, accesskey, host三个参数改成你的,这个失效时间可能是在index.html页面上传文件时显示403的原因之一。

打开代码示例中的index.html文件,上传文件到oss存储空间,通过浏览器查看请求信息,这里有两个参数是要用到小程序中上传文件的,我是先把这两个参数在小程序中调用测试可以上传成功了, 再走后面的流程的。但这只是测试,正常情况下需要通过调取后台接口获取上传文件所需的参数(fileName, policy, accessKeyId, signature,host)

接下来就是通过小程序上传图片到oss中了

在小程序中的测试流程:

  1. upload: function(){
  2. wx.chooseImage({
  3. success: function (res) {
  4. var tempFilePaths = res.tempFilePaths
  5. console.log('chooseImage success, temp path is: ', tempFilePaths[0])
  6. wx.uploadFile({
  7. url: 'http://www.ieesee.cn',
  8. filePath: tempFilePaths[0],
  9. name: 'file',
  10. formData: {
  11. name: tempFilePaths[0],
  12. key: "${filename}", 上传图片的名字和路径(默认路径根目录,自定义目录:xxx/xxx.png)
  13. policy: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",//测试的网页版打开F12那获得
  14. OSSAccessKeyId: "xxxxxxxxxxxxxxxx",
  15. success_action_status: "200",
  16. signature: "xxxxxxxxxxxxxxxxxxxxxxxxxx",//测试的网页版打开F12那获得
  17. },
  18. success: function (res) {
  19. console.log('chooseImage success, temp path is: ', tempFilePaths[0])
  20. wx.showToast({
  21. title: "上传成功",
  22. icon: 'success',
  23. duration: 1000
  24. })
  25. },
  26. fail: function ({errMsg}) {
  27. console.log('upladImage fail, errMsg is: ', errMsg)
  28. wx.showToast({
  29. title: "上传失败",
  30. duration: 1000
  31. })
  32. },
  33. })
  34. }
  35. })
  36. }

以上基本了解了微信小程序的上传到阿里云OSS的流程,下面开始走正式流程

----------------------------------------------------------------------------------------------------------------------------------------------------------------

界面就是先简单的写了两个按钮

 

 调用接口获取上传文件所需参数:fileName, policy, accessKeyId, signature,host上传至阿里云,待全部文件上传完毕后再将上传至应用服务器(后台服务器)。

要注意的点:wx.uploadFile只能同时上传一个文件,不然会报错,网上很多都用的循环,但是本人亲测用for循环不行,上传的图片有重复的顺序也出现错误,但是问题还是有的,用递归上传完美解决。

 

  1. /* 函数描述:作为上传文件时递归上传的函数体体;
  2. * 参数描述:
  3. * 内容类型 1:视频 2:图片
  4. * tempFiles是文件路径数组
  5. * successUp是成功上传的个数->0
  6. * failUp是上传失败的个数->0
  7. * i是文件路径数组的指标->0
  8. * length是文件路径数组的长度
  9. */
  10. //获取上传文件所需参数
  11. getUploadInfo(contentType, tempFiles, successUp, failUp, i, length) {
  12. var that = this;
  13. var contentExt = tempFiles[i].tempFilePath.substr(tempFiles[i].tempFilePath.lastIndexOf('.') + 1);
  14. var url = `${app.globalData.domain}/uploadContent/getOssUploadInfo`;
  15. var data = {
  16. uid: wx.getStorageSync("uid"),
  17. openid: wx.getStorageSync("openId"),
  18. contentType: contentType,
  19. contentSubType: that.data.contentSubType,
  20. contentExt: contentExt //图片类型:jpg. png ... 或者 视频类型:mp4.....
  21. };
  22. util.post(url, data).then((res) => {
  23. if (res.data.retCode == 0) {
  24. that.setData({
  25. fileName: res.data.fileName,
  26. policy: res.data.policy,
  27. accessKeyId: res.data.accessKeyId,
  28. signature: res.data.signature,
  29. host: "https://" + res.data.host,
  30. })
  31. //获取完所需参数再选择文件上传
  32. that.uploadFile(contentType, tempFiles, successUp, failUp, i, length);
  33. } else {
  34. wx.showModal({
  35. title: '提示',
  36. content: '[' + res.data.retCode + ']' + res.data.retMsg,
  37. showCancel: false,
  38. })
  39. }
  40. }).catch((error) => {
  41. console.log(error);
  42. })
  43. },
  44. //将文件上传到阿里云
  45. uploadFile(contentType, tempFiles, successUp, failUp, i, length) {
  46. var that = this;
  47. wx.uploadFile({
  48. url: that.data.host,
  49. filePath: tempFiles[i].tempFilePath,
  50. name: 'file',
  51. formData: {
  52. name: tempFiles[i].tempFilePath,
  53. key: that.data.fileName, //上传图片的名字和路径(默认路径根目录,自定义目录:xxx/xxx.png)
  54. policy: that.data.policy,
  55. OSSAccessKeyId: that.data.accessKeyId,
  56. success_action_status: "200",
  57. signature: that.data.signature,
  58. },
  59. success: function (res) {
  60. console.log(res);
  61. successUp++;
  62. wx.showToast({
  63. title: "上传成功",
  64. icon: 'success',
  65. duration: 1000,
  66. })
  67. //已经上传完成的图片数组
  68. var hasUploadedImgsArr = that.data.hasUploadedImgsArr;
  69. var imgUrl = that.data.host + '/' + that.data.fileName;
  70. hasUploadedImgsArr.push(imgUrl);
  71. that.setData({
  72. hasUploadedImgsArr: hasUploadedImgsArr
  73. })
  74. },
  75. fail: function (errMsg) {
  76. failUp++
  77. console.log('upladImage fail, errMsg is: ', errMsg);
  78. wx.showToast({
  79. title: "上传失败",
  80. duration: 1000
  81. })
  82. },
  83. complete() {
  84. i++;
  85. if (i == length) {
  86. //所有图片上传完成以后再上传至应用服务器
  87. console.log('总共' + successUp + '张上传成功,' + failUp + '张上传失败!');
  88. if (contentType == 1) { //1视频 2图片
  89. that.submitVideo(); //将视频上传至应用服务器
  90. } else { //图片
  91. that.submitImage(); //将图片上传至应用服务器
  92. }
  93. } else {
  94. //递归调用getUploadInfo函数
  95. that.getUploadInfo(contentType, tempFiles, successUp, failUp, i, length);
  96. }
  97. }
  98. })
  99. },
  100. //提交视频内容至应用服务器
  101. submitVideo() {
  102. var that = this;
  103. var url = `${app.globalData.domain}/uploadContent/submitVideo`;
  104. var data = {
  105. uid: wx.getStorageSync("uid"),
  106. openid: wx.getStorageSync("openId"),
  107. videoTitle: "视频test",
  108. videoUrl: this.data.host + '/' + this.data.fileName,
  109. }
  110. util.post(url, data).then((res) => {
  111. that.setData({
  112. hasUploadedImgsArr: []
  113. })
  114. if (res.data.retCode == 0) {
  115. console.log("提交视频内容至应用服务器成功");
  116. } else {
  117. wx.showModal({
  118. title: '提示',
  119. content: '[' + res.data.retCode + ']' + res.data.retMsg,
  120. showCancel: false,
  121. })
  122. }
  123. }).catch((error) => {
  124. console.log(error);
  125. })
  126. },
  127. //提交图片至应用服务器
  128. submitImage() {
  129. var imageList = [],
  130. listObj = null, that = this;
  131. for (let i = 0; i < this.data.hasUploadedImgsArr.length; i++) {
  132. listObj = {
  133. "url": this.data.hasUploadedImgsArr[i],
  134. "desc": `图片test${i + 1}`
  135. };
  136. imageList.push(listObj);
  137. }
  138. console.log(imageList);
  139. var url = `${app.globalData.domain}/uploadContent/submitImage`;
  140. var data = {
  141. uid: wx.getStorageSync("uid"),
  142. openid: wx.getStorageSync("openId"),
  143. imageTitle: "上传图片test",
  144. imageCover: imageList[0].url,
  145. imageList: JSON.stringify(imageList)
  146. }
  147. util.post(url, data).then((res) => {
  148. that.setData({
  149. hasUploadedImgsArr: []
  150. })
  151. if (res.data.retCode == 0) {
  152. console.log("提交图片至应用服务器成功");
  153. } else {
  154. wx.showModal({
  155. title: '提示',
  156. content: '[' + res.data.retCode + ']' + res.data.retMsg,
  157. showCancel: false,
  158. })
  159. }
  160. }).catch((error) => {
  161. console.log(error);
  162. })
  163. },
  164. //上传图片(多张)
  165. uploadImage() {
  166. console.log("上传图片。。。。");
  167. this.setData({
  168. contentSubType: 1
  169. })
  170. var that = this;
  171. wx.chooseMedia({
  172. count: 9,
  173. mediaType: ['image'],
  174. sourceType: ['album', 'camera'],
  175. maxDuration: 30,
  176. camera: 'back',
  177. success: function (res) {
  178. console.log(res);
  179. var tempFiles = res.tempFiles;
  180. that.setData({
  181. imageFiles: tempFiles
  182. })
  183. var contentType = 2; //1视频 2图片
  184. that.getUploadInfo(contentType, tempFiles, 0, 0, 0, tempFiles.length);
  185. },
  186. fail: function (error) {
  187. console.log(error);
  188. }
  189. });
  190. },
  191. //上传视频(一条)
  192. uploadVideo() {
  193. this.setData({
  194. contentSubType: 1
  195. })
  196. var that = this;
  197. wx.chooseMedia({
  198. count: 1,
  199. mediaType: ['video'],
  200. sourceType: ['album', 'camera'],
  201. maxDuration: 30,
  202. camera: 'back',
  203. success: function (res) {
  204. console.log(res);
  205. var contentType = 1; //1视频 2图片
  206. var tempFiles = res.tempFiles;
  207. that.getUploadInfo(contentType, tempFiles, 0, 0, 0, tempFiles.length);
  208. },
  209. fail: function (error) {
  210. console.log(error);
  211. }
  212. })
  213. },

到这,流程就已经完了,功能也完成啦!

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/245993
推荐阅读
相关标签
  

闽ICP备14008679号