首页 > PHP资讯 > 工具库 > 微信小程序获取相册照片实例详解

微信小程序获取相册照片实例详解

工具库
这篇文章主要介绍了微信小程序 获取相册照片实例详解的相关资料,需要的朋友可以参考下

微信小程序 获取相册照片

今天遇到微信小程序的用户头像设置功能,做笔记.

先上gif:

  

2.index.js


//index.js //获取应用实例 var app = getApp() Page({  data: {   tempFilePaths: ''  },  onLoad: function () {  },  chooseimage: function () {   var _this = this;   wx.chooseImage({    count: 1, // 默认9    sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有    sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有    success: function (res) {     // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片     _this.setData({      tempFilePaths:res.tempFilePaths     })    }   })  } })

API 说明:

wx.chooseImage({  success: function(res) {   var tempFilePaths = res.tempFilePaths   wx.uploadFile({    url: 'http://example.weixin.qq.com/upload', //仅为示例,非真实的接口地址    filePath: tempFilePaths[0],    name: 'file',    formData:{     'user': 'test'    },    success: function(res){     var data = res.data     //do something    }   })  } })

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

以上就是微信小程序获取相册照片实例详解的详细内容,更多请关注 第一PHP社区 其它相关文章!

工具库

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持26不支持0