Skip to content

Commit 6a57ed0

Browse files
committed
增加 Location 返回值
1 parent 4ca7188 commit 6a57ed0

File tree

6 files changed

+27
-5
lines changed

6 files changed

+27
-5
lines changed

demo/demo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ function putObject() {
913913
},
914914
Headers: {
915915
// 万象持久化接口,上传时持久化
916-
'Pic-Operations': '{"is_pic_info": 1, "rules": [{"fileid": "test.jpg", "rule": "imageMogr2/thumbnail/!50p"}]}'
916+
// 'Pic-Operations': '{"is_pic_info": 1, "rules": [{"fileid": "test.jpg", "rule": "imageMogr2/thumbnail/!50p"}]}'
917917
},
918918
}, function (err, data) {
919919
logger.log(err || data);

dist/cos-js-sdk-v5.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -2221,7 +2221,7 @@ base.init(COS, task);
22212221
advance.init(COS, task);
22222222

22232223
COS.getAuthorization = util.getAuth;
2224-
COS.version = '1.2.8';
2224+
COS.version = '1.2.9';
22252225

22262226
module.exports = COS;
22272227

@@ -6985,6 +6985,7 @@ function optionsObject(params, callback) {
69856985
function putObjectCopy(params, callback) {
69866986

69876987
// 特殊处理 Cache-Control
6988+
var self = this;
69886989
var headers = params.Headers;
69896990
if (!headers['Cache-Control'] && !headers['cache-control']) headers['Cache-Control'] = '';
69906991

@@ -7020,7 +7021,17 @@ function putObjectCopy(params, callback) {
70207021
}, function (err, data) {
70217022
if (err) return callback(err);
70227023
var result = util.clone(data.CopyObjectResult || {});
7024+
var url = getUrl({
7025+
ForcePathStyle: self.options.ForcePathStyle,
7026+
protocol: self.options.Protocol,
7027+
domain: self.options.Domain,
7028+
bucket: params.Bucket,
7029+
region: params.Region,
7030+
object: params.Key,
7031+
isLocation: true
7032+
});
70237033
util.extend(result, {
7034+
Location: url,
70247035
statusCode: data.statusCode,
70257036
headers: data.headers
70267037
});

dist/cos-js-sdk-v5.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cos-js-sdk-v5",
3-
"version": "1.2.8",
3+
"version": "1.2.9",
44
"description": "JavaScript SDK for [腾讯云对象存储](https://cloud.tencent.com/product/cos)",
55
"main": "index.js",
66
"types": "types",

src/base.js

+11
Original file line numberDiff line numberDiff line change
@@ -2181,6 +2181,7 @@ function optionsObject(params, callback) {
21812181
function putObjectCopy(params, callback) {
21822182

21832183
// 特殊处理 Cache-Control
2184+
var self = this;
21842185
var headers = params.Headers;
21852186
if (!headers['Cache-Control'] && !headers['cache-control']) headers['Cache-Control'] = '';
21862187

@@ -2216,7 +2217,17 @@ function putObjectCopy(params, callback) {
22162217
}, function (err, data) {
22172218
if (err) return callback(err);
22182219
var result = util.clone(data.CopyObjectResult || {});
2220+
var url = getUrl({
2221+
ForcePathStyle: self.options.ForcePathStyle,
2222+
protocol: self.options.Protocol,
2223+
domain: self.options.Domain,
2224+
bucket: params.Bucket,
2225+
region: params.Region,
2226+
object: params.Key,
2227+
isLocation: true,
2228+
});
22192229
util.extend(result, {
2230+
Location: url,
22202231
statusCode: data.statusCode,
22212232
headers: data.headers,
22222233
});

src/cos.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ base.init(COS, task);
5959
advance.init(COS, task);
6060

6161
COS.getAuthorization = util.getAuth;
62-
COS.version = '1.2.8';
62+
COS.version = '1.2.9';
6363

6464
module.exports = COS;

0 commit comments

Comments
 (0)