我正在尝试弄清楚如何在Google Apps上获取当前打开的文档的ID。即使我在谷歌上进行过研究,我找不到任何有用的东西。
我期望使用的函数是DocsList.getFileById()
,但似乎无法获取打开的文档ID。
有什么建议吗?
答案 0 :(得分:1)
使用DocumentApp.getActiveDocument()
。
// Get the id of the document to which this script is bound.
var docId = DocumentApp.getActiveDocument().getId();