Skip to content

Commit c71a380

Browse files
committed
update
1 parent 6061f13 commit c71a380

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

README.md

+22-7
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,22 @@ var Region = 'ap-guangzhou';
3737
// 初始化实例
3838
var cos = new COS({
3939
getAuthorization: function (options, callback) {
40-
// 异步获取签名
41-
$.get('../server/auth.php', {
42-
method: (options.Method || 'get').toLowerCase(),
43-
pathname: '/' + (options.Key || '')
44-
}, function (authorization) {
45-
callback(authorization);
46-
}, 'text');
40+
var url = '../server/sts.php';
41+
var xhr = new XMLHttpRequest();
42+
xhr.open('GET', url, true);
43+
xhr.onload = function (e) {
44+
try {
45+
var data = JSON.parse(e.target.responseText);
46+
} catch (e) {
47+
}
48+
callback({
49+
TmpSecretId: data.credentials && data.credentials.tmpSecretId,
50+
TmpSecretKey: data.credentials && data.credentials.tmpSecretKey,
51+
XCosSecurityToken: data.credentials && data.credentials.sessionToken,
52+
ExpiredTime: data.expiredTime,
53+
});
54+
};
55+
xhr.send();
4756
}
4857
});
4958
@@ -59,6 +68,12 @@ document.getElementById('file-selector').onchange = function () {
5968
Region: Region,
6069
Key: file.name,
6170
Body: file,
71+
onHashProgress: function (progressData) {
72+
console.log('校验中', JSON.stringify(progressData));
73+
},
74+
onProgress: function (progressData) {
75+
console.log('上传中', JSON.stringify(progressData));
76+
},
6277
}, function (err, data) {
6378
console.log(err, data);
6479
});

0 commit comments

Comments
 (0)