我正在尝试使用Javascript并使用Google Developer's示例将下面的文件上传到我的Google云端硬盘。该文件由用户选择过程即时创建,然后自动下载到默认目录(下载)。有没有办法同时将文件放在Google云端硬盘上?我正在使用jsPDF并尝试了一些类似下面但未成功的事情。
E:\Downloads\MyFile.pdf
我绕过文件选择器,因为我知道要上传哪个文件。我修改了Google示例以将代码传递给文件名,但它失败了。
我想我需要在我的硬盘上创建一个文件的Blob然后传递到Google API,但我尝试了一些组合而没有成功。任何帮助表示赞赏。
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<script type="text/javascript">
var CLIENT_ID = 'my-client-id';
var SCOPES = 'https://www.googleapis.com/auth/drive';
var FOLDER_ID = 'my-drive-folder-id';
/**
* Called when the client library is loaded to start the auth flow.
*/
function handleClientLoad() {
window.setTimeout(checkAuth, 1);
}
/**
* Check if the current user has authorized the application.
*/
function checkAuth() {
gapi.auth.authorize(
{'client_id': CLIENT_ID, 'scope': SCOPES, 'immediate': true},
handleAuthResult);
}
/**
* Called when authorization server replies.
*
* @param {Object} authResult Authorization result.
*/
function handleAuthResult(authResult) {
if (authResult && !authResult.error) {
var MyFile = "E:\PAPA\Downloads\test.pdf";
insertFile(MyFile);
}
}
/**
* Start the file upload.
*
* @param {Object} evt Arguments from the file selector.
*/
function uploadFile(evt) {
gapi.client.load('drive', 'v2', function() {
var file = evt.target.files[0];
insertFile(file);
});
}
/**
* Insert new file.
*
* @param {File} fileData File object to read data from.
* @param {Function} callback Function to call when the request is complete.
*/
function insertFile(fileData, callback) {
const boundary = '-------314159265358979323846';
const delimiter = "\r\n--" + boundary + "\r\n";
const close_delim = "\r\n--" + boundary + "--";
var reader = new FileReader();
reader.readAsBinaryString(fileData);
reader.onload = function(e) {
var contentType = fileData.type || 'application/octet-stream';
var metadata = {
'title': fileData.name,
'mimeType': contentType,
'parents': [{"id":FOLDER_ID}]
};
var base64Data = btoa(reader.result);
var multipartRequestBody =
delimiter +
'Content-Type: application/json\r\n\r\n' +
JSON.stringify(metadata) +
delimiter +
'Content-Type: ' + contentType + '\r\n' +
'Content-Transfer-Encoding: base64\r\n' +
'\r\n' +
base64Data +
close_delim;
var request = gapi.client.request({
'path': '/upload/drive/v2/files/',
'method': 'POST',
'params': {'uploadType': 'multipart'},
'headers': {
'Content-Type': 'multipart/mixed; boundary="' + boundary + '"'
},
'body': multipartRequestBody});
if (!callback) {
callback = function(file) {
console.log(file)
};
}
request.execute(callback);
}
}
</script>
<script type="text/javascript" src="https://apis.google.com/js/client.js?onload=handleClientLoad"></script>
</head>
<body>
<!--Add a file picker for the user to start the upload process -->
<input type="file" id="filePicker" style="display: none" />
<input type="button" id="authorizeButton" style="display: none" value="Authorize" />
</body>
</html>
答案 0 :(得分:0)
我绕过文件选择器,因为我知道要上传哪个文件。我修改了Google示例以将代码传递给文件名,但它失败了。
这就是问题所在。
包含文件名的字符串不是文件。
浏览器不提供网站根据文件名从访问者的驱动器中读取文件的方法(这将是一个巨大的安全漏洞)。
答案 1 :(得分:0)
您可以与“保存到云端硬盘”按钮集成:https://developers.google.com/drive/web/savetodrive
然后您不必担心通过本地下载文件夹进行额外重定向。