使用document.saveAs(fileId)函数

时间:2016-10-19 21:48:41

标签: google-drive-realtime-api

请分享是否有人深入了解如何使用此功能以及在实时api document.saveAs(fileId)函数中输入的fileId。

我提供了api文档

https://developers.google.com/google-apps/realtime/reference/gapi.drive.realtime.Document.html#saveAs

1 个答案:

答案 0 :(得分:0)

我认为您提供的链接说明了它已经做了什么。

  

“将此文档的副本保存到新文件。此功能完成后   调用后,对此文档的所有更改都不再影响旧文档   而是保存到新文件。 “

片段:

Product

此处提到的 fileId 是您希望将来更改复制到并反映传入更改的新文档的ID。例: 如果你不知道 fileId 是什么样子,那就是这样的。

如果是docs文件,

var newDoc = gapi.drive.realtime.loadFromJson(jsonData);
newDoc.saveAs(fileId);

https://docs.google.com/document/d/1Fh6s7an-7I6VuDBxZMcxcaL9cG1XplryHPOGnznWlns/edit 是fileId。

如果是工作表文件,

1Fh6s7an-7I6VuDBxZMcxcaL9cG1XplryHPOGnznWlns

https://docs.google.com/spreadsheets/d/1BD97LZlG5qxVHyvPvZ-i_mahh-yUPuFCG2ZW4yhN8vs/edit#gid=0 是fileId。