微信小程序云開發(fā)SDK文檔 文件存儲(chǔ)·換取真實(shí)鏈接

2022-05-12 16:34 更新

Cloud.getTempFileURL(fileList: string[]): Promise<Object>

支持端:小程序 , 云函數(shù) , Web

用云文件 ID 換取真實(shí)鏈接,公有讀的文件獲取的鏈接不會(huì)過(guò)期,私有的文件獲取的鏈接十分鐘有效期。一次最多取 50 個(gè)。

參數(shù)

fileList: string[]

要換取臨時(shí)鏈接的云文件 ID 列表

返回值

Promise.<Object>

屬性類型說(shuō)明
fileListObject文件列表

fileList 的結(jié)構(gòu)

屬性類型說(shuō)明
fileIDstring云文件 ID
tempFileURLstring臨時(shí)文件路徑
statusnumber狀態(tài)碼,0 為成功
errMsgstring成功為 ok,失敗為失敗原因

小程序端示例

Promise 風(fēng)格

wx.cloud.getTempFileURL({
  fileList: [{
    fileID: 'a7xzcb',
    maxAge: 60 * 60, // one hour
  }]
}).then(res => {
  // get temp file URL
  console.log(res.fileList)
}).catch(error => {
  // handle error
})

Callback 風(fēng)格

wx.cloud.getTempFileURL({
  fileList: ['cloud://xxx', 'cloud://yyy'],
  success: res => {
    // get temp file URL
    console.log(res.fileList)
  },
  fail: err => {
    // handle error
  }
})

云函數(shù)端示例

const cloud = require('wx-server-sdk')
cloud.init({
  env: cloud.DYNAMIC_CURRENT_ENV
})

exports.main = async (event, context) => {
  const fileList = ['cloud://xxx', 'cloud://yyy']
  const result = await cloud.getTempFileURL({
    fileList: fileList,
  })
  return result.fileList
}


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)