File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 4
4
5
5
对象存储服务的 XML JS SDK 资源 github 地址:[ tencentyun/cos-js-sdk-v5] ( https://github.com/tencentyun/cos-js-sdk-v5 ) 。
6
6
7
- 演示示例 Demo 下载地址 :[ XML JS SDK CSP Demo] ( https://github.com/tencentyun/cos-js-sdk-v5/tree/master/csp/csp.html ) 。
7
+ 演示示例 Demo 代码地址 :[ XML JS SDK CSP Demo] ( https://github.com/tencentyun/cos-js-sdk-v5/tree/master/csp/csp.html ) 。
8
8
9
9
### 开发准备
10
10
@@ -41,13 +41,14 @@ var cos = new COS({
41
41
ServiceDomain: ' http://cos.default.xxx.com' , // 这里替换成 getService 域名
42
42
Domain: ' http://{Bucket}.cos.{Region}.xxx.com' , 这里替换成 API 域名格式模板
43
43
getAuthorization : function (options , callback ) {
44
- $ .get (' ./auth.php' , {
45
- method: options .Method ,
46
- pathname: options .Key ,
47
- }, function (auth ) {
48
- callback (auth);
49
- });
50
- }
44
+ var url = ' ./auth.php?method=' + options .Method + ' &pathname=' + encodeURIComponent (options .Key );
45
+ var xhr = new XMLHttpRequest ();
46
+ xhr .open (' GET' , url, true );
47
+ xhr .onload = function (e ) {
48
+ callback (e .target .responseText );
49
+ };
50
+ xhr .send ();
51
+ },
51
52
});
52
53
53
54
// 监听选文件
You can’t perform that action at this time.
0 commit comments