| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <title>Ajax Post 上传(服务端计算签名)</title>
- <style>
- h1,
- h2 {
- font-weight: normal;
- }
- #msg {
- margin-top: 10px;
- }
- </style>
- </head>
- <body>
- <h1>PostObject 上传(服务端计算签名)</h1>
- <input id="fileSelector" type="file" />
- <input id="submitBtn" type="submit" />
- <div id="msg"></div>
- <script>
- (function () {
- let prefix = '';
- let Key = '';
- // 对更多字符编码的 url encode 格式
- const camSafeUrlEncode = function (str) {
- return encodeURIComponent(str)
- .replace(/!/g, '%21')
- .replace(/'/g, '%27')
- .replace(/\(/g, '%28')
- .replace(/\)/g, '%29')
- .replace(/\*/g, '%2A');
- };
- // 获取权限策略
- const getAuthorization = function (opt, callback) {
- // 替换为自己服务端地址 获取post上传签名
- const url = `http://127.0.0.1:3000/post-policy?ext=${opt.ext}`;
- const xhr = new XMLHttpRequest();
- xhr.open('GET', url, true);
- xhr.onload = function (e) {
- let credentials;
- try {
- const result = JSON.parse(e.target.responseText);
- credentials = result;
- } catch (e) {
- callback('获取签名出错');
- }
- if (credentials) {
- callback(null, {
- securityToken: credentials.securityToken,
- cosKey: credentials.cosKey,
- cosHost: credentials.cosHost,
- policy: credentials.policy,
- qAk: credentials.qAk,
- qKeyTime: credentials.qKeyTime,
- qSignAlgorithm: credentials.qSignAlgorithm,
- qSignature: credentials.qSignature,
- });
- } else {
- console.error(xhr.responseText);
- callback('获取签名出错');
- }
- };
- xhr.send();
- };
- // 上传文件
- const uploadFile = function (file, callback) {
- const fileName = file.name;
- let ext = '';
- const lastDotIndex = fileName.lastIndexOf('.');
- if (lastDotIndex > -1) {
- // 这里获取文件后缀 由服务端生成最终上传的路径
- ext = fileName.substring(lastDotIndex + 1);
- }
- getAuthorization({ ext }, function (err, credentials) {
- if (err) {
- alert(err);
- return;
- }
- const protocol =
- location.protocol === 'https:' ? 'https:' : 'http:';
- prefix = protocol + '//' + credentials.cosHost;
- Key = credentials.cosKey;
- const fd = new FormData();
- // 在当前目录下放一个空的 empty.html 以便让接口上传完成跳转回来
- fd.append('key', Key);
- // 使用 policy 签名保护格式
- credentials.securityToken &&
- fd.append('x-cos-security-token', credentials.securityToken);
- fd.append('q-sign-algorithm', credentials.qSignAlgorithm);
- fd.append('q-ak', credentials.qAk);
- fd.append('q-key-time', credentials.qKeyTime);
- fd.append('q-signature', credentials.qSignature);
- fd.append('policy', credentials.policy);
- // 文件内容,file 字段放在表单最后,避免文件内容过长影响签名判断和鉴权
- fd.append('file', file);
- // xhr
- const url = prefix;
- const xhr = new XMLHttpRequest();
- xhr.open('POST', url, true);
- xhr.upload.onprogress = function (e) {
- console.log(
- '上传进度 ' +
- Math.round((e.loaded / e.total) * 10000) / 100 +
- '%'
- );
- };
- xhr.onload = function () {
- if (Math.floor(xhr.status / 100) === 2) {
- const ETag = xhr.getResponseHeader('etag');
- callback(null, {
- url:
- prefix + '/' + camSafeUrlEncode(Key).replace(/%2F/g, '/'),
- ETag: ETag,
- });
- } else {
- callback('文件 ' + Key + ' 上传失败,状态码:' + xhr.status);
- }
- };
- xhr.onerror = function () {
- callback(
- '文件 ' + Key + ' 上传失败,请检查是否没配置 CORS 跨域规则'
- );
- };
- xhr.send(fd);
- });
- };
- // 监听表单提交
- document.getElementById('submitBtn').onclick = function (e) {
- const file = document.getElementById('fileSelector').files[0];
- if (!file) {
- document.getElementById('msg').innerText = '未选择上传文件';
- return;
- }
- file &&
- uploadFile(file, function (err, data) {
- console.log(err || data);
- document.getElementById('msg').innerText = err
- ? err
- : '上传成功,ETag=' + data.ETag + 'url=' + data.url;
- });
- };
- })();
- </script>
- </body>
- </html>
|