這篇文章主要介紹了微信小程式取得相簿照片實例詳解的相關資料,需要的朋友可以參考下
微信小程式取得相簿照片
今天遇到微信小程式的使用者頭像設定功能,做筆記.
先上gif:
##再上程式碼:1.index.wxml
<!--index.wxml--> <button style="margin:30rpx;" bindtap="chooseimage">获取图片</button> <image src="{{tempFilePaths }}" mode="aspecFill" style="width: 100%; height: 450rpx"/>
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 說明:
# #這裡注意:返回的是圖片在本地的路徑.如果需要將圖片上傳到伺服器,需要用到另一個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中文網其他相關文章!