storage.md 11.7 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

#### 响应参数

|字段		|类型	|说明														|
|:-:		|:-:	|:-:														|
|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
雪洛 已提交
78
			const result = await uniCloud.uploadFile({
雪洛's avatar
雪洛 已提交
79 80
				filePath: filePath,
        cloudPath: 'a.jpg',
雪洛's avatar
雪洛 已提交
81 82 83 84 85 86
				onUploadProgress: function(progressEvent) {
			          console.log(progressEvent);
			          var percentCompleted = Math.round(
			            (progressEvent.loaded * 100) / progressEvent.total
			          );
			        }
雪洛's avatar
雪洛 已提交
87 88 89
			});

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

```

**Tips**

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

雪洛's avatar
雪洛 已提交
114 115 116
## getTempFileURL(Object object)

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

雪洛's avatar
雪洛 已提交
118
**平台兼容性**
雪洛's avatar
雪洛 已提交
119

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

#### 请求参数

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

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

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

雪洛's avatar
雪洛 已提交
137
<!-- **注意**
雪洛's avatar
雪洛 已提交
138

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

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

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

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

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

#### 示例代码

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

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

雪洛's avatar
雪洛 已提交
173 174
## deleteFile(Object object)

雪洛's avatar
雪洛 已提交
175
删除云端文件,**使用阿里云作为服务商时,最好不要使用客户端删除云端文件**
雪洛's avatar
雪洛 已提交
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

#### 请求参数

**Object object**

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

#### 响应参数

|字段		|类型					|必填	|说明						|
|:-:		|:-:					|:-:	|:-:						|
|fileList	|&lt;Array&gt;.Object	|否		|删除结果组成的数组			|
|requestId	|String					|否		|请求序列号,用于错误排查	|

**fileList定义**

|字段	|类型	|必填	|说明						|
|:-:	|:-:	|:-:	|:-:						|
|fileID	|String	|是		|文件 ID					|

#### 示例代码

```javascript
// promise
雪洛's avatar
雪洛 已提交
202
uniCloud
雪洛's avatar
雪洛 已提交
203 204 205 206 207 208
  .deleteFile({
    fileList: ['cloud://jimmytest-088bef/1534576354877.jpg']
  })
  .then(res => {});

// callback
雪洛's avatar
雪洛 已提交
209
uniCloud.deleteFile(
雪洛's avatar
雪洛 已提交
210 211 212 213 214 215 216 217 218
  {
    fileList: ['cloud://jimmytest-088bef/1534576354877.jpg'],
	success(){},
	fail(){},
	complete(){}
  }
);
```

雪洛's avatar
雪洛 已提交
219 220 221 222
# 云函数API

## uniCloud.uploadFile(Object uploadFileOptions)

雪洛's avatar
雪洛 已提交
223
**云函数**内上传文件至云开发存储服务。
雪洛's avatar
雪洛 已提交
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 255 256

**平台兼容性**

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

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

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

#### 响应参数

| 字段			| 类型	| 必填| 说明																			|
| ---				| ---		| ---	| ---																				|
| 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
雪洛 已提交
257
## uniCloud.getTempFileURL(Object getTempFileURLOptions)
雪洛's avatar
雪洛 已提交
258

雪洛'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

**平台兼容性**

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

#### 请求参数

**getTempFileURLOptions参数说明**

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

**fileList字段**

| 字段	| 类型		| 必填| 说明						|
| ---		| ---			| ---	| ---							|
| fileID| string	| 是	| 文件 ID。				|
雪洛's avatar
雪洛 已提交
280
<!-- | maxAge| Integer	| 是	| 文件链接有效期。| -->
雪洛's avatar
雪洛 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305

#### 响应参数

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

**fileList字段**

| 字段				| 类型	| 必填| 说明											|
| ---					| ---		| ---	| ---												|
| fileID			| string| 是	| 文件 ID。									|
| tempFileURL	| string| 是	| 文件访问链接。						|

#### 示例代码

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

## uniCloud.deleteFile(Object deleteFileOptions)

雪洛's avatar
雪洛 已提交
306
**云函数**删除云端文件。
雪洛's avatar
雪洛 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340

#### 请求参数

**deleteFileOptions参数说明**

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

#### 响应参数

| 字段			| 类型								| 必填| 说明											|
| ---				| ---									| ---	| ---												|
| fileList	| &lt;Array&gt;.object| 否	| 删除结果组成的数组。			|
| requestId	| string							| 否	| 请求序列号,用于错误排查。|

**fileList字段**

| 字段 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| fileID | string | 是 | 文件 ID。 |

#### 示例代码

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

## uniCloud.downloadFile(Object downloadFileOptions)

雪洛's avatar
雪洛 已提交
341
**云函数**下载已上传至云开发的文件至本地(默认本地根目录/root)。
雪洛's avatar
雪洛 已提交
342 343 344 345 346 347 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

**平台兼容性**

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

#### 请求参数

**downloadFileOptions参数说明**

| 字段				| 类型	| 必填| 说明										|
| ---					| ---		| ---	| ---											|
| fileID			| string| 是	| 要下载的文件的 ID。			|
| tempFilePath| 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
雪洛 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389

# 数据处理

**仅阿里云支持**

使用阿里云作为服务商时,云存储支持直接使用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)	|