以下代码正在处理将PDF文件(使用jsPDF创建)加载到我的Google云端硬盘文件夹中。它本质上是谷歌驱动器修改的快速入门代码。
在使用" docMenu.output(' dataurlnewwindow')打开的浏览器中查看时生成的PDF看起来不错;"
PDF文件在我的Google云端硬盘文件夹中显示正常,但当我去查看时,我得到一个灰色屏幕,其中包含#34;无法加载PDF文档"。我在console / inspect中没有执行错误。
我错过了什么?我是否通过拉动Blob(数据URI)并将其提供给Google云端硬盘上传来搞砸了?
非常感谢!
<script type="text/javascript">
var CLIENT_ID = 'my-client-id';
var SCOPES = 'https://www.googleapis.com/auth/drive';
var FOLDER_ID = 'my-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) {
// Access token has been successfully retrieved, requests can be sent to the API.
var docMenu = new jsPDF('p', 'cm', 'a5'); <-- Create PDF document
docMenu.text(2, 1, "Testing"); <-- Add text here...
docMenu.text(2, 5, "Testing");
docMenu.text(2, 10, "Testing");
docMenu.text(2, 15, "Testing");
docMenu.text(2, 20, "Please order and pay at the counter.");
docMenu.output('dataurlnewwindow'); <-- Displays PDF perfectly
var MyBlob = docMenu.output('blob'); <-- get PDF Blob
MyBlob.name = "test.pdf"; <-- Give it a file name
insertFile(MyBlob); <-- send it to Google Drive upload routine
} else {
alert("FAILED AUTHORIZING");
}
}
/**
* 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>
答案 0 :(得分:0)
您是否认为在创建Google云端硬盘时需要更改文件的权限,以便“有链接的任何人”可以查看该文件或将其公开?
该文件是否已损坏且Google云端硬盘无法读取,但docMenu.output方法不会受到损坏的影响?我之前发生了类似的事情。
我真的没有任何创建PDF的经验,但我希望我的建议至少可以指出你正确的方向,如果它是正确的。
答案 1 :(得分:0)
对于那些可以提供帮助的人,上面的代码非常适合我使用jsPDF创建PDF文件并将其上传到Google云端硬盘。
我遇到的问题是Drive之一由于某种原因不喜欢这个PDF(因为它与论坛中的其他PDF一起报道)。
该文件下载正常并在Acrobat,Foxit和其他人中完美打开......问题在于Google。