0

我是哥伦比亚人,我的英语不好,希望你能理解我的问题。我正在谷歌文档(谷歌应用脚​​本)上设置谷歌插件,我正在调用谷歌选择器来选择文件,但我无法做到这一点,因为我不知道如何,当我单击选择将文件的 id 变量发送到其他文件到扩展名为 html 或 gs 的项目中。

请任何人帮助我。谢谢...

4

2 回答 2

0

感谢您的回答,我能够做到,我只是使用了隐藏输入并通过表单发送,它看起来像->

<form id="form1">
   <input type="hidden" id="idFile">
</form>

当我单击选择按钮选择器时,所以->

google.script.run.processForm(document.forms[0]);

函数“processForm”在扩展名为“gs”的文件中。

我正在写这些信息,因为我想帮助任何有同样麻烦的人。

于 2014-05-09T13:10:41.063 回答
0

没有看到你的代码很难说。如果您提供它应该使回答这个问题变得容易得多。

我建议使用 DriveApp 或 DocsList 服务来获取文档 ID。为此,您将执行以下操作:

驱动程序:

//the variable blob should be whatever you get from the file picker
var file = DriveApp.createFile(blob);
var fileId = file.getId();
return fileId;

文档列表:

//the variable blob should be whatever you get from the file picker
var file = DocsList.createFile(blob);
var fileId = file.getId();
return fileId;
于 2014-05-07T12:12:26.910 回答