gpt4 book ai didi

javascript - 使用 Google Drive API v3 将 .docx 或 .doc 文件转换为 google docs 文件

转载 作者:行者123 更新时间:2023-12-05 00:32:03 25 4
gpt4 key购买 nike

我需要使用 Google Drive API v3 将 .doc 或 .docx 文件上传到谷歌驱动器,然后也使用 Google Drive API v3 将其转换,以便文件的内容在我自己的 Web 应用程序(托管在 node.js 中)中可读和可编辑。 js)。我尝试使用 drive.files.copy 执行此操作,但是,我一直收到错误消息:API 返回错误:错误:不支持将上传的内容转换为请求的输出类型。谁能帮我弄清楚如何做到这一点?任何帮助将不胜感激。谢谢!
这是我用于转换的代码,但是它不起作用:

                drive.files.list({
q: "mimeType = 'application/msword'"
pageSize: 100,
fields: 'nextPageToken, files(id, name)',
}, (err, res) => {
if (err) return console.log('The API returned an error: ' + err);
const files = res.data.files;
if (files.length) {
console.log('Files:');
files.map((file) => {
let result = (file.name).substring(0, (file.name).indexOf('.'));
console.log(file);
console.log(`${file.name} (${file.id})`);
drive.files.copy(
{
fileId: file.id,
requestBody: {
name: result,
mimeType: 'application/vnd.google-apps.document'
}
},
(err, res) => {
if (err) return console.log("The API returned an error: " + err);
console.log(res.data);
}
);
});
}else {
console.log('No files found.');
}
});
这是我用于上传文件的代码:
            const driveResponse = drive.files.create({
requestBody: {
name: filename,
mimeType: mimetype
},
media: {
mimeType: mimetype,
body: Buffer.from(data).toString()
}
});
driveResponse.then(data => {
if(data.status == 200)
res.redirect('/notes');
else
console.log("file not uploaded.");
}).catch(err => { throw new Error(err) })

最佳答案

当我看到你上传application/msword文件的脚本时,我注意到一个修改点。那么下面的修改呢?在这种情况下,需要转换为流类型。
此外,我确认当我测试 buffer.toString()作为 media 的正文,上传的文件是无效文件。
修改后的脚本:

const { Readable } = require("stream");
const stream = new Readable();
stream.push(Buffer.from(data));
stream.push(null);

const driveResponse = drive.files.create({
requestBody: {
name: filename,
},
media: {
body: stream
}
});
driveResponse.then(data => {
if(data.status == 200)
res.redirect('/notes');
else
console.log("file not uploaded.");
}).catch(err => { throw new Error(err) })
笔记:
  • 此修改后的脚本假定您的值 Buffer.from(data)application/msword 的有效值.所以如果 Buffer.from(data) 的值无效为 application/msword ,请再次检查数据。
  • 关于javascript - 使用 Google Drive API v3 将 .docx 或 .doc 文件转换为 google docs 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70283912/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com