W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
上傳文件到云存儲空間
參數(shù)
名稱 | 類型 | 必須 | 說明 |
---|---|---|---|
option | Object | 是 | |
option.cloudPath | String | 是 | 云存儲文件存儲路徑 |
option.fileContent | Buffer/ReadableStream | 是 | 文件內容 |
option.contentType | String | 是 | 文件 Conetent-Type |
option.contentLength | String | 是 | 文件:Content-Length |
返回值 Promise
resolve 結果:
名稱 | 類型 | 說明 |
---|---|---|
requestID | String | 請求 ID |
fileID | String | 文件 ID |
statusCode | Number | 云存儲服務器返回狀態(tài)碼 |
reject 結果:
名稱 | 類型 | 說明 |
---|---|---|
code | String | 錯誤碼 |
message | String | 錯誤信息 |
代碼示例
const cloud = require('swan-server-sdk')
const path = require('path')
const fs = require('fs')
const util = require('util')
exports.main = async (event, context) => {
cloud.init(context)
const filePath = path.join(__dirname, 'demo.jpg');
const fileStream = fs.createReadStream(filePath);
const fileStats = await util.promisify(fs.stat)(filePath)
const res = await cloud.storage().uploadFile({
cloudPath: 'photo/demo.jpg',
fileContent: fileStream,
contentType: 'image/jpeg',
contentLength: fileStats.size
})
return res.fileID
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: