Skip to content

Commit bce7d0e

Browse files
author
wonderswang
committed
fix: 优化 demo.js
1 parent b0f12c1 commit bce7d0e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

demo/demo.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -939,6 +939,7 @@ function getObject() {
939939
cos.getObject({
940940
Bucket: config.Bucket, // Bucket 格式:test-1250000000
941941
Region: config.Region,
942+
Key: '1mb.zip',
942943
onProgress: function (progressData) {
943944
logger.log(JSON.stringify(progressData));
944945
}
@@ -1394,12 +1395,13 @@ function request() {
13941395
cos.request({
13951396
Bucket: config.Bucket,
13961397
Region: config.Region,
1397-
Key: '1.txt',
1398-
Method: 'GET',
1399-
Action: 'acl',
1400-
Headers: {},
1401-
Query: {},
1402-
Body: '',
1398+
Key: '1.png',
1399+
Method: 'POST',
1400+
Action: 'image_process',
1401+
Headers: {
1402+
// 通过 imageMogr2 接口使用图片缩放功能:指定图片宽度为 200,宽度等比压缩
1403+
'Pic-Operations': '{"is_pic_info": 1, "rules": [{"fileid": "desample_photo.jpg", "rule": "imageMogr2/thumbnail/200x/"}]}'
1404+
},
14031405
}, function (err, data) {
14041406
logger.log(err || data);
14051407
});

0 commit comments

Comments
 (0)