『壹』 怎樣保存小程序里的視頻到手機相冊
有時會用微信小程序看視頻,並且想把上面的視頻給下載到手機上,下面就來分享下小程序視頻下載方法。
1、首先在蘋果8,在ios12.2中打開微信,點擊【發現】,進入【小程序】。
『貳』 小程序怎麼臨時載入本地相冊圖片
小程序中獲取圖片可通過兩種方式得到,第一種是直接打開微信內部自己的樣式,第一格就是相機拍照,後面是圖片,第二種是彈框提示用戶是要拍照還是從相冊選擇,下面一一來看。
選擇相冊要用到wx.chooseImage(OBJECT)函數,具體參數如下:
直接來看打開相機相冊的代碼:
Page({ data: { tempFilePaths: '' }, onLoad: function () { }, chooseimage: function () { var that = this; wx.chooseImage({ count: 1, // 默認9 sizeType: ['original', 'compressed'], // 可以指定是原圖還是壓縮圖,默認二者都有 sourceType: ['album', 'camera'], // 可以指定來源是相冊還是相機,默認二者都有 success: function (res) { // 返回選定照片的本地文件路徑列表,tempFilePath可以作為img標簽的src屬性顯示圖片 that.setData({ tempFilePaths: res.tempFilePaths }) } }) }, })
方法一效果圖如下:
點擊獲取彈框提示,代碼如下:
Page({ data: { tempFilePaths: '' }, onLoad: function () { }, chooseimage: function () { var that = this; wx.showActionSheet({ itemList: ['從相冊中選擇', '拍照'], itemColor: "#CED63A", success: function (res) { if (!res.cancel) { if (res.tapIndex == 0) { that.chooseWxImage('album') } else if (res.tapIndex == 1) { that.chooseWxImage('camera') } } } }) }, chooseWxImage: function (type) { var that = this; wx.chooseImage({ sizeType: ['original', 'compressed'], sourceType: [type], success: function (res) { console.log(res); that.setData({ tempFilePaths: res.tempFilePaths[0], }) } }) } })
文件的臨時路徑,在小程序本次啟動期間可以正常使用,如需持久保存,需在主動調用 wx.saveFile,在小程序下次啟動時才能訪問得到。
布局文件:
<button style="margin:30rpx;" bindtap="chooseimage">獲取圖片</button> <image src="{{tempFilePaths }}" catchTap="chooseImageTap" mode="aspectFit" style="width: 100%; height: 450rpx" />
『叄』 如何查看照片信息
查看照片信息的具體步驟如下:
我們需要准備的材料分別是:電腦、
1、首先我們打開照片文件夾,找到想要查看的照片。