0

我试图弄清楚如何在 Google Apps 上获取当前打开的文档的 ID。即使我在谷歌上进行了研究,我也找不到任何有用的东西。

我期望使用的功能是DocsList.getFileById(),但似乎没有办法获取打开的文档ID。

有什么建议么?

4

1 回答 1

1

使用DocumentApp.getActiveDocument().

// Get the id of the document to which this script is bound.
var docId = DocumentApp.getActiveDocument().getId();
于 2013-05-24T12:37:50.723 回答