Drive.comments.list(fileId).items.length似乎无法正确计算

时间:2017-11-14 18:19:43

标签: api google-apps-script comments drive

刚刚在Drive Comments API中找到了一些特殊的东西。不确定其用户错误或API中的问题。

在我的main()中,Logger将注释的长度设为20.我将返回到我的文档并创建另一个注释。记录器仍将评论项的长度设为20。

提前致谢。

function main() {
  var fileId = getFileId();
  var fileComments = getComments(fileId);
  Logger.log(fileComments.items.length); // this always says 20  
}
function getFileId() {
  return DocumentApp.getActiveDocument().getId(); 
}
function getComments(fileId) {
  return Drive.Comments.list(fileId);
  //Logger.log(cmnts.items.length);
}

1 个答案:

答案 0 :(得分:0)

请进一步阅读驱动器评论列表参考,默认页面大小为每页20个。 https://developers.google.com/drive/v3/reference/comments/list