作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遵循了 google 的整个步骤,我得到了一些我在这里找到的代码,所以我尝试使用 API 将文件从表单上传到 Google 云端硬盘,这就是代码:
var importFiles = $('#files')[0].files;
const boundary = '--cloud';
const delimiter = "\r\n" + boundary + "\r\n";
const close_delim = "\r\n" + boundary + "--";
var metadata = {
'name': importFiles[0]["name"],
'mimeType': importFiles[0]["type"],
'parents': ['parent-id']
};
var multipartRequestBody =
delimiter +
'Content-Type: application/json; charset=UTF-8\r\n\r\n' +
JSON.stringify(metadata) + "\r\n" +
delimiter + "\r\n" +
'Content-Type: ' + importFiles[0]["type"] + "\r\n\r\n" +
importFiles[0] +
close_delim;
gapi.client.request({
'path': '/upload/drive/v3/files',
'method': 'POST',
'params': {
'uploadType': 'multipart'
},
'headers': {
'Authorization': 'Bearer ' + gapi.client.getToken()["access_token"],
'Content-Type': 'multipart/related; boundary="cloud"'
},
'body': multipartRequestBody
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
Google 收到信息并创建文件,问题是该文件似乎不会发送给 Google 或者我不知道,我得到的只是没有内容的 Google 文件。当我尝试上传示例时,一切顺利。
最佳答案
我认为您的脚本几乎是正确的。但需要稍微修改一下。那么这个修改怎么样呢?我认为您的情况有几个答案。因此,请将此视为其中之一。
'Content-Transfer-Encoding: base64\r\n\r\n' +
。var importFiles = $('#files')[0].files;
const boundary = '--cloud';
const delimiter = "\r\n" + boundary + "\r\n";
const close_delim = "\r\n" + boundary + "--";
var metadata = {
'name': importFiles[0]["name"],
'mimeType': importFiles[0]["type"],
'parents': ['parent-id']
};
var f = new FileReader(); // Added
f.onload = function(){ // Added
var multipartRequestBody =
delimiter +
'Content-Type: application/json; charset=UTF-8\r\n\r\n' +
JSON.stringify(metadata) +
delimiter +
'Content-Type: ' + importFiles[0]["type"] + "\r\n" +
'Content-Transfer-Encoding: base64\r\n\r\n' + // Added
btoa(this.result) + // Modified
closeDelim;
gapi.client.request({
'path': '/upload/drive/v3/files',
'method': 'POST',
'params': {
'uploadType': 'multipart',
},
'headers': {
'Authorization': 'Bearer ' + gapi.client.getToken()["access_token"],
'Content-Type': 'multipart/related; boundary="cloud"',
},
'body': multipartRequestBody,
}).then(function(r) { // Added
console.log(r); // Added
}); // Added
};
f.readAsBinaryString(importFiles[0]); // Added. I think that you can also use readAsDataURL().
Google 收到信息并创建文件
,您的脚本已经准备好用于上传文件。虽然在我的环境中,我确认此脚本有效,但如果这对您的情况没有用,我很抱歉。
关于javascript - GDrive 分段上传 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50357074/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!