storage.md 13.3 KB
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6
开发者使用`uniCloud`的云存储,无需再像传统模式那样单独去购买存储空间、CDN映射、流量采购等;`uniCloud`云存储支持文本、图片和其他由用户生成的内容存储到云端,并提供CDN下载地址,

开发者可在客户端使用云存储API,文件上传成功后,系统会自动生成一个资源链接,开发者需保存该文件地址供后续业务下载使用。

即将支持云函数中使用云存储功能。

雪洛's avatar
雪洛 已提交
7
# 客户端API
雪洛's avatar
雪洛 已提交
8

雪洛's avatar
雪洛 已提交
9 10
## uploadFile(Object object)

雪洛's avatar
雪洛 已提交
11
上传文件到云存储,**阿里云单文件大小限制为100M,腾讯云单文件最大为5G**
雪洛's avatar
雪洛 已提交
12

雪洛's avatar
雪洛 已提交
13 14
**支付宝小程序开发工具上传文件到腾讯云时可能会返回失败,请以真机为准**

雪洛's avatar
雪洛 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
**阿里云支持的文件类型**

```js
{
  jpg: 'image/jpeg',
  jpeg: 'image/jpeg',
  png: 'image/png',
  gif: 'image/gif',
  webp: 'image/webp',
  svg: 'image/svg+xml',
  mp3: 'audio/mp3',
  mp4: 'video/mp4',
  ogg: 'audio/ogg',
  webm: 'video/webm'
}
```

雪洛's avatar
雪洛 已提交
32 33 34
#### 请求参数
**Object object**

雪洛's avatar
雪洛 已提交
35 36 37
|参数名						|类型			|必填	|默认值	|说明																														|平台差异说明							|
|:-:							|:-:			|:-:	|:-:		|:-:																														|:-:											|
|filePath					|String		|是		|-			|要上传的文件对象																								|-												|
雪洛's avatar
雪洛 已提交
38
|cloudPath				|String		|是		|-			|文件的绝对路径,包含文件名																			|-	|
雪洛's avatar
雪洛 已提交
39 40
|fileType					|String		|-		|-			|文件类型,支付宝小程序、钉钉小程序必填,可选image、video、audio|-												|
|onUploadProgress	|Function	|否		|-			|上传进度回调																										|-												|
雪洛's avatar
雪洛 已提交
41

雪洛's avatar
雪洛 已提交
42
**注意**
雪洛's avatar
雪洛 已提交
43

雪洛's avatar
雪洛 已提交
44
- 使用阿里云时,`cloudPath`为云端文件名,请勿使用非法字符
雪洛's avatar
雪洛 已提交
45 46
- 腾讯云`cloudPath` 为文件的绝对路径,包含文件名 foo/bar.jpg、foo/bar/baz.jpg 等,不能包含除[0-9 , a-z , A-Z]、/、!、-、\_、.、、\*和中文以外的字符,使用 / 字符来实现类似传统文件系统的层级结构。
- 腾讯云`cloudPath`为文件标识,相同的`cloudPath`会覆盖,如果没有权限覆盖则会上传失败
雪洛's avatar
雪洛 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79

#### 响应参数

|字段		|类型	|说明														|
|:-:		|:-:	|:-:														|
|code		|String	|状态码,操作成功则不返回									|
|message	|String	|错误描述													|
|fileID		|String	|文件唯一 ID,用来访问文件,建议存储起来	|
|requestId	|String	|请求序列号,用于错误排查									|

#### 示例代码

<!-- 
cloudPath: 'test-admin.jpeg',
filePath: filePath,
onUploadProgress: function(progressEvent) {
  console.log(progressEvent);
  var percentCompleted = Math.round(
    (progressEvent.loaded * 100) / progressEvent.total
  );
}
 -->

```javascript
uni.chooseImage({
	count: 1,
	success(res) {
		console.log(res);
		if (res.tempFilePaths.length > 0) {
			let filePath = res.tempFilePaths[0]
			//进行上传操作

			// promise
雪洛's avatar
雪洛 已提交
80
			const result = await uniCloud.uploadFile({
雪洛's avatar
雪洛 已提交
81 82
				filePath: filePath,
        cloudPath: 'a.jpg',
雪洛's avatar
雪洛 已提交
83 84 85 86 87 88
				onUploadProgress: function(progressEvent) {
			          console.log(progressEvent);
			          var percentCompleted = Math.round(
			            (progressEvent.loaded * 100) / progressEvent.total
			          );
			        }
雪洛's avatar
雪洛 已提交
89 90 91
			});

			// callback
雪洛's avatar
雪洛 已提交
92
			uniCloud.uploadFile({
雪洛's avatar
雪洛 已提交
93 94 95 96 97 98 99
				filePath: filePath,
        cloudPath: 'a.jpg',
        onUploadProgress: function(progressEvent) {
          console.log(progressEvent);
          var percentCompleted = Math.round(
            (progressEvent.loaded * 100) / progressEvent.total
          );
雪洛's avatar
雪洛 已提交
100
				},
雪洛's avatar
雪洛 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113
				success() {},
				fail() {},
				complete() {}
			});
			
		}
	}
});

```

**Tips**

雪洛's avatar
雪洛 已提交
114
- 阿里云返回的fileID为链接形式可以直接使用,腾讯云返回的为cloud://形式,如需展示需要调用getTempFileURL获取链接
雪洛's avatar
雪洛 已提交
115

雪洛's avatar
雪洛 已提交
116 117 118
## getTempFileURL(Object object)

获取文件临时下载链接。
雪洛's avatar
雪洛 已提交
119

雪洛's avatar
雪洛 已提交
120
**平台兼容性**
雪洛's avatar
雪洛 已提交
121

雪洛's avatar
雪洛 已提交
122 123 124
|阿里云	|腾讯云	|
|----		|----		|
|×			|√			|
雪洛's avatar
雪洛 已提交
125 126 127 128 129 130 131

#### 请求参数

|字段		|类型						|必填	|默认值	|说明								|平台差异说明	|
|:-:		|:-:						|:-:	|:-:	|:-:								|:-:			|
|fileList	|&lt;Array&gt;.String,Object|是		|-		|要获取下载链接的文件 ID 组成的数组	|仅腾讯云支持	|

雪洛's avatar
雪洛 已提交
132
**请求参数中的fileList**
雪洛's avatar
雪洛 已提交
133 134 135 136

|字段	|类型	|必填	|说明					|
|:-:	|:-:	|:-:	|:-:					|
|fileID	|String	|是		|文件 ID				|
雪洛's avatar
雪洛 已提交
137
<!-- |maxAge	|Number	|是		|文件链接有效期,单位:秒	| -->
雪洛's avatar
雪洛 已提交
138

雪洛's avatar
雪洛 已提交
139
<!-- **注意**
雪洛's avatar
雪洛 已提交
140

雪洛's avatar
雪洛 已提交
141
- `maxAge`在配置所有人可读权限时不生效 -->
雪洛's avatar
雪洛 已提交
142

雪洛's avatar
雪洛 已提交
143 144 145 146 147 148 149
#### 响应参数

|字段		|类型					|说明							|
|:-:		|:-:					|:-:							|
|fileList	|&lt;Array&gt;.Object	|存储下载链接的数组				|
|requestId	|String					|请求序列号,用于错误排查		|

雪洛's avatar
雪洛 已提交
150
**响应参数中的fileList**
雪洛's avatar
雪洛 已提交
151 152 153 154 155 156 157 158 159 160

|字段		|类型	|说明			|
|:-:		|:-:	|:-:			|
|fileID		|String	|文件 ID		|
|tempFileURL|String	|文件访问链接	|

#### 示例代码

```javascript
// promise
雪洛's avatar
雪洛 已提交
161
uniCloud.getTempFileURL({
雪洛's avatar
雪洛 已提交
162 163 164 165 166
		fileList: ['cloud://test-28farb/a.png']
	})
	.then(res => {});

// callback
雪洛's avatar
雪洛 已提交
167
uniCloud.getTempFileURL({
雪洛's avatar
雪洛 已提交
168 169 170 171 172 173
	fileList: ['cloud://test-28farb/a.png'],
	success() {},
	fail() {},
	complete() {}
});
```
雪洛's avatar
雪洛 已提交
174

雪洛's avatar
雪洛 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
## deleteFile(Object object)

删除云端文件

#### 请求参数

**Object object**

|字段		|类型					|必填	|说明						|
|:-:		|:-:					|----	|:-:						|
|fileList	|&lt;Array&gt;.String	|是		|要删除的文件 ID 组成的数组,**阿里云只支持一次删除一个文件**|

#### 响应参数

|字段		|类型					|必填	|说明						|
|:-:		|:-:					|:-:	|:-:						|
|code		|String					|否		|状态码,操作成功则不返回	|
|message	|String					|否		|错误描述					|
|fileList	|&lt;Array&gt;.Object	|否		|删除结果组成的数组			|
|requestId	|String					|否		|请求序列号,用于错误排查	|

**fileList定义**

|字段	|类型	|必填	|说明						|
|:-:	|:-:	|:-:	|:-:						|
|code	|String	|否		|删除结果,成功为 SUCCESS	|
|fileID	|String	|是		|文件 ID					|

#### 示例代码

```javascript
// promise
雪洛's avatar
雪洛 已提交
207
uniCloud
雪洛's avatar
雪洛 已提交
208 209 210 211 212 213
  .deleteFile({
    fileList: ['cloud://jimmytest-088bef/1534576354877.jpg']
  })
  .then(res => {});

// callback
雪洛's avatar
雪洛 已提交
214
uniCloud.deleteFile(
雪洛's avatar
雪洛 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
  {
    fileList: ['cloud://jimmytest-088bef/1534576354877.jpg'],
	success(){},
	fail(){},
	complete(){}
  }
);
```

<!-- ### 下载文件

downloadFile(Object)

请求参数

| 字段 | 类型 | 必填 | 说明
| :-: | :-: | :-: | :-: |
| fileID | String | 是 | 要下载的文件的id
| tempFilePath | String | 否 | 下载的文件要存储的位置

响应参数

| 字段 | 类型 | 必填 | 说明
| :-: | :-: | :-: | :-: |
| code | String | 否 | 状态码,操作成功则不返回
| message | String | 否 | 错误描述
| fileContent | Buffer | 否 | 下载的文件的内容。如果传入tempFilePath则不返回该字段
| requestId | String | 否 | 请求序列号,用于错误排查

示例代码

```javascript
let result = await tcb.downloadFile({
    fileID: "cloud://aa-99j9f/my-photo.png",
    // tempFilePath: '/tmp/test/storage/my-photo.png',
	success(){},
	fail(){},
	complete(){}
});
``` -->
雪洛's avatar
雪洛 已提交
255 256 257 258
# 云函数API

## uniCloud.uploadFile(Object uploadFileOptions)

雪洛's avatar
雪洛 已提交
259
**云函数**内上传文件至云开发存储服务。
雪洛's avatar
雪洛 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294

**平台兼容性**

|阿里云	|腾讯云	|
|----		|----		|
|×			|√			|

#### 请求参数
**uploadFileOptions参数说明**

| 字段				| 类型					| 必填| 说明																																															|
| ---					| ---						| ---	| ---																																																|
| cloudPath		| string				| 是	| 文件的绝对路径,包含文件名。例如 foo/bar.jpg、foo/bar/baz.jpg 等。																|
| fileContent	| fs.ReadStream	| 是	| buffer或要上传的文件 [可读流](https://nodejs.org/api/stream.html#stream_class_stream_readable) 。	|

#### 响应参数

| 字段			| 类型	| 必填| 说明																			|
| ---				| ---		| ---	| ---																				|
| code			| string| 否	| 状态码,操作成功则不返回。								|
| message		| string| 否	| 错误描述。																|
| fileID		| fileID| 是	| 文件唯一 ID,用来访问文件,建议存储起来。	|
| requestId	| string| 否	| 请求序列号,用于错误排查。								|

#### 示例代码

```javascript
const fs = require("fs");

let result = await uniCloud.uploadFile({
    cloudPath: "test-admin.jpeg",
    fileContent: fs.createReadStream(`${__dirname}/cos.jpeg`)
});
```

雪洛's avatar
雪洛 已提交
295
## uniCloud.getTempFileURL(Object getTempFileURLOptions)
雪洛's avatar
雪洛 已提交
296

雪洛's avatar
雪洛 已提交
297
**云函数**获取文件下载链接。
雪洛's avatar
雪洛 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317

**平台兼容性**

|阿里云	|腾讯云	|
|----		|----		|
|×			|√			|

#### 请求参数

**getTempFileURLOptions参数说明**

| 字段		| 类型								| 必填| 说明												|
| ---			| ---									| ---	| ---													|
| fileList| &lt;Array&gt;.string| 是	| 要下载的文件 ID 组成的数组。|

**fileList字段**

| 字段	| 类型		| 必填| 说明						|
| ---		| ---			| ---	| ---							|
| fileID| string	| 是	| 文件 ID。				|
雪洛's avatar
雪洛 已提交
318
<!-- | maxAge| Integer	| 是	| 文件链接有效期。| -->
雪洛's avatar
雪洛 已提交
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346

#### 响应参数

| 字段			| 类型								| 必填| 说明													|
| ---				| ---									| ---	| ---														|
| code			| string							| 否	| 状态码,操作成功则为 SUCCESS。|
| message		| string							| 否	| 错误描述。										|
| fileList	| &lt;Array&gt;.object| 否	| 存储下载链接的数组。					|
| requestId	| string							| 否	| 请求序列号,用于错误排查。		|

**fileList字段**

| 字段				| 类型	| 必填| 说明											|
| ---					| ---		| ---	| ---												|
| code				| string| 否	| 删除结果,成功为 SUCCESS。|
| fileID			| string| 是	| 文件 ID。									|
| tempFileURL	| string| 是	| 文件访问链接。						|

#### 示例代码

```javascript
let result = await uniCloud.getTempFileURL({
    fileList: ['cloud://test-28farb/a.png']
});
```

## uniCloud.deleteFile(Object deleteFileOptions)

雪洛's avatar
雪洛 已提交
347
**云函数**删除云端文件。
雪洛's avatar
雪洛 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384

#### 请求参数

**deleteFileOptions参数说明**

| 字段		| 类型								| 必填| 说明												|
| ---			| ---									| ---	| ---													|
| fileList| &lt;Array&gt;.string| 是	| 要删除的文件 ID 组成的数组。|

#### 响应参数

| 字段			| 类型								| 必填| 说明											|
| ---				| ---									| ---	| ---												|
| code			| string							| 否	| 状态码,操作成功则不返回。|
| message		| string							| 否	| 错误描述									|
| fileList	| &lt;Array&gt;.object| 否	| 删除结果组成的数组。			|
| requestId	| string							| 否	| 请求序列号,用于错误排查。|

**fileList字段**

| 字段 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| code | string | 否 | 删除结果,成功为SUCCESS。 |
| fileID | string | 是 | 文件 ID。 |

#### 示例代码

```javascript
let result = await uniCloud.deleteFile({
    fileList: [
        "cloud://test-28farb/a.png"
    ]
});
```

## uniCloud.downloadFile(Object downloadFileOptions)

雪洛's avatar
雪洛 已提交
385
**云函数**下载已上传至云开发的文件至本地(默认本地根目录/root)。
雪洛's avatar
雪洛 已提交
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418

**平台兼容性**

|阿里云	|腾讯云	|
|----		|----		|
|×			|√			|

#### 请求参数

**downloadFileOptions参数说明**

| 字段				| 类型	| 必填| 说明										|
| ---					| ---		| ---	| ---											|
| fileID			| string| 是	| 要下载的文件的 ID。			|
| tempFilePath| string| 否	| 下载的文件要存储的位置。|

#### 响应参数

| 字段				| 类型	| 必填| 说明																										|
| ---					| ---		| ---	| ---																											|
| code				| string| 否	| 状态码,操作成功则不返回。															|
| message			| string| 否	| 错误描述。																							|
| fileContent	| Buffer| 否	| 下载的文件的内容。如果传入 tempFilePath 则不返回该字段。|
| requestId		| string| 否	| 请求序列号,用于错误排查。															|

#### 示例代码

```javascript
let result = await uniCloud.downloadFile({
    fileID: "cloud://aa-99j9f/my-photo.png",
    // tempFilePath: '/tmp/test/storage/my-photo.png'
});
```
雪洛's avatar
雪洛 已提交
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

# 数据处理

**仅阿里云支持**

使用阿里云作为服务商时,云存储支持直接使用restful api对资源进行处理,下表列出支持的操作类型。

|功能			|操作参数	|参考文档																													|
|:-:			|:-:		|:-:																														|
|图片缩放		|resize		|[点击查看](https://help.aliyun.com/document_detail/44688.html?spm=a2c4g.11186623.2.10.274651b0YkQ5hE#concept-hxj-c4n-vdb)	|
|图片裁剪		|crop		|[点击查看](https://help.aliyun.com/document_detail/44693.html?spm=a2c4g.11186623.2.11.274651b0YkQ5hE#concept-bbn-14s-vdb)	|
|图片旋转		|rotate		|[点击查看](https://help.aliyun.com/document_detail/44690.html?spm=a2c4g.11186623.2.12.274651b0YkQ5hE#concept-yvv-25t-vdb)	|
|图片锐化调节		|sharpen	|[点击查看](https://help.aliyun.com/document_detail/44700.html?spm=a2c4g.11186623.2.13.274651b0YkQ5hE#concept-cyw-zzt-vdb)	|
|图片格式转换		|format		|[点击查看](https://help.aliyun.com/document_detail/44703.html?spm=a2c4g.11186623.2.14.274651b0YkQ5hE#concept-mf3-md5-vdb)	|
|图片质量调节		|quality	|[点击查看](https://help.aliyun.com/document_detail/44705.html?spm=a2c4g.11186623.2.15.274651b0YkQ5hE#concept-exc-qp5-vdb)	|
|图片水印		|watermark	|[点击查看](https://help.aliyun.com/document_detail/44957.html?spm=a2c4g.11186623.2.16.274651b0YkQ5hE#concept-hrt-sv5-vdb)	|
|视频截帧		|snapshot	|[点击查看](https://help.aliyun.com/document_detail/64555.html?spm=a2c4g.11186623.2.17.274651b0YkQ5hE#concept-kz1-cwc-wdb)	|