我们可以在 google sites/apps 之外使用 Google App 脚本吗?有什么方法可以从我们的服务器使用 google 应用程序脚本命令吗?
Can we use Google App script outside google sites/apps? Is there any method to use the google app script commands from our server?
我可以使用 google 驱动器 API 在 google 文档上创建表格。但我无法找到 API 来设计该表单(添加 fields/items)。
我能有这样的解决方案吗
- APIs 来设计表格
- 我可以从我的服务器使用 google 应用程序脚本吗?
- 我如何发布 google 应用程序脚本以使用我服务器上的那个东西。请举个例子。
遗憾的是,目前无法将 Google Apps 脚本用于外部用途。
它只能用于 Google 云端硬盘、Gmail、Google 表格、Google 网站等。无法在您的服务器上使用它。几个月前我尝试做同样的事情,但发现这是不可能的。
但是可以创建表单。
为了提供复选框,使用以下实现...
var form = FormApp.create('New Form');
var item = form.addCheckboxItem();
item.setTitle('What condiments would you like on your hot dog?');
item.setChoices([
item.createChoice('Ketchup'),
item.createChoice('Mustard'),
item.createChoice('Relish')
]);
单选按钮可以这样使用...
form.addMultipleChoiceItem()
.setTitle('Do you prefer cats or dogs?')
.setChoiceValues(['Cats','Dogs'])
.showOtherOption(true);
文本字段项可以这样使用...
var tfitem = form.addTextItem();
tfitem.setTitle('What is your name?');
您可能需要查看 this link 以防万一
我可以使用 google 驱动器 API 在 google 文档上创建表格。但我无法找到 API 来设计该表单(添加 fields/items)。 我能有这样的解决方案吗 - APIs 来设计表格 - 我可以从我的服务器使用 google 应用程序脚本吗? - 我如何发布 google 应用程序脚本以使用我服务器上的那个东西。请举个例子。
遗憾的是,目前无法将 Google Apps 脚本用于外部用途。
它只能用于 Google 云端硬盘、Gmail、Google 表格、Google 网站等。无法在您的服务器上使用它。几个月前我尝试做同样的事情,但发现这是不可能的。
但是可以创建表单。
为了提供复选框,使用以下实现...
var form = FormApp.create('New Form');
var item = form.addCheckboxItem();
item.setTitle('What condiments would you like on your hot dog?');
item.setChoices([
item.createChoice('Ketchup'),
item.createChoice('Mustard'),
item.createChoice('Relish')
]);
单选按钮可以这样使用...
form.addMultipleChoiceItem()
.setTitle('Do you prefer cats or dogs?')
.setChoiceValues(['Cats','Dogs'])
.showOtherOption(true);
文本字段项可以这样使用...
var tfitem = form.addTextItem();
tfitem.setTitle('What is your name?');
您可能需要查看 this link 以防万一