@@ -37,13 +37,22 @@ var Region = 'ap-guangzhou';
37
37
// 初始化实例
38
38
var cos = new COS ({
39
39
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 ();
47
56
}
48
57
});
49
58
@@ -59,6 +68,12 @@ document.getElementById('file-selector').onchange = function () {
59
68
Region: Region,
60
69
Key: file .name ,
61
70
Body: file,
71
+ onHashProgress : function (progressData ) {
72
+ console .log (' 校验中' , JSON .stringify (progressData));
73
+ },
74
+ onProgress : function (progressData ) {
75
+ console .log (' 上传中' , JSON .stringify (progressData));
76
+ },
62
77
}, function (err , data ) {
63
78
console .log (err, data);
64
79
});
0 commit comments