Skip to content

Commit b090acc

Browse files
committed
Key 拼接 url 用 camSafeUrlEncode
1 parent cf7ca67 commit b090acc

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

dist/cos-js-sdk-v5.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,7 @@ var util = {
537537
filter: filter,
538538
clone: clone,
539539
uuid: uuid,
540+
camSafeUrlEncode: camSafeUrlEncode,
540541
throttleOnProgress: throttleOnProgress,
541542
getFileSize: getFileSize,
542543
isBrowser: true
@@ -1939,7 +1940,7 @@ base.init(COS, task);
19391940
advance.init(COS, task);
19401941

19411942
COS.getAuthorization = util.getAuth;
1942-
COS.version = '0.5.0';
1943+
COS.version = '0.5.1';
19431944

19441945
module.exports = COS;
19451946

@@ -5768,7 +5769,7 @@ function getUrl(params) {
57685769
}
57695770
url += '/';
57705771
if (object) {
5771-
url += encodeURIComponent(object).replace(/%2F/g, '/');
5772+
url += util.camSafeUrlEncode(object).replace(/%2F/g, '/');
57725773
}
57735774

57745775
if (params.isLocation) {

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.

src/cos.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ base.init(COS, task);
5656
advance.init(COS, task);
5757

5858
COS.getAuthorization = util.getAuth;
59-
COS.version = '0.5.0';
59+
COS.version = '0.5.1';
6060

6161
module.exports = COS;

0 commit comments

Comments
 (0)