使用Google Apps脚本在Google表单中的多选项目中插入图片

时间:2018-07-19 16:34:36

标签: google-apps-script google-form

我需要在多项选择项的每个选择中插入Google云端硬盘图像。检查文档后,类.addMultipleChoiceItem()不支持方法.setImage()。还有另一种方法可以从Google云端硬盘插入图像吗?

示例:

var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var item = form.addListItem();
item.setTitle('Do you prefer cats or dogs?')
.setChoices([
    item.createChoice('Cats'), <------ I need to insert an imagen of a cat 
in this choice with code.
    item.createChoice('Dogs')
]);

1 个答案:

答案 0 :(得分:1)

基于此link,您可以使用Google Form UI添加图像以供选择。但是在Apps脚本中,您只能添加文本。这也被归档为feature request