gpt4 book ai didi

google-apps-script - 将 Google 文档评论连同突出显示的文本导出到 Google 表格中?

转载 作者:行者123 更新时间:2023-12-05 01:08:24 24 4
gpt4 key购买 nike

是否有一种方法可以从 Google 文档中导出评论,以便评论显示在 Google 表格文档中的一列中,而 Google 文档中突出显示的文本显示在其旁边的列中?

我了解可以通过 API 访问文件注释:

https://developers.google.com/drive/v3/reference/comments#methods

但是我们可以用它来提取文档的注释和突出显示的文本吗?任何帮助将不胜感激。

最佳答案

首先在services下添加Drive API

add api

然后试试这个:

代码:

function listComments() {
// Change docId into your document's ID
// See below on how to
var docId = '1fzYPRldd16KjsZ6OEtzgBIeGO8q5tDbxaAcqvzrJ8Us';
var comments = Drive.Comments.list(docId);
var hList = [], cList = [];

// Get list of comments
if (comments.items && comments.items.length > 0) {
for (var i = 0; i < comments.items.length; i++) {
var comment = comments.items[i];
// add comment and highlight to array's first element
hList.unshift([comment.context.value]);
cList.unshift([comment.content]);
}
// Set values to A and B
var sheet = SpreadsheetApp.getActiveSheet();
sheet.getRange("A1:A" + hList.length).setValues(hList);
sheet.getRange("B1:B" + cList.length).setValues(cList);
}
}

文档:

document

输出:

output

资源:

关于google-apps-script - 将 Google 文档评论连同突出显示的文本导出到 Google 表格中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66103464/

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