Skip to content

Commit d107ab1

Browse files
committed
update csp doc
1 parent 3f8dccd commit d107ab1

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

csp/start.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
对象存储服务的 XML JS SDK 资源 github 地址:[tencentyun/cos-js-sdk-v5](https://github.com/tencentyun/cos-js-sdk-v5)
66

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)
88

99
### 开发准备
1010

@@ -41,13 +41,14 @@ var cos = new COS({
4141
ServiceDomain: 'http://cos.default.xxx.com', // 这里替换成 getService 域名
4242
Domain: 'http://{Bucket}.cos.{Region}.xxx.com', 这里替换成 API 域名格式模板
4343
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+
},
5152
});
5253
5354
// 监听选文件

0 commit comments

Comments
 (0)