create an ItemResponse in Form

两盒软妹~` 提交于 2019-12-18 08:47:03

问题


I'm trying to send an automatic response from code to a form of mine. I can open it and send empty responses (I create a FormResponse and submit it empty).

Now I want to fill the itemResponses prior to submit. I'm trying to use

FormResponse.withItemResponse(itemResponse)

https://developers.google.com/apps-script/reference/forms/form-response?hl=es-ES#withItemResponse(ItemResponse) but I can't find a way to create the ItemResponse argument to fill my FormResponse. I searched the whole documentation, I know there must be a way, but I simply can't find it.

var form = FormApp.getActiveForm();
var response = form.createResponse();
var itemResponse = ????????????;
response.withItemResponse(itemResponse);
response.submit();

Any hint? Thank you!


回答1:


Found it!

Because Google search "itemresponse" throw me nothing, I finally searched itemresponse in Google for the GAS documentation site...

The only way to create an ItemResponse is from the specific Item typed object. For example:

var itemResponse = TextItem.createResponse('my text');

https://developers.google.com/apps-script/reference/forms/text-item#createResponse(String)



来源:https://stackoverflow.com/questions/16897067/create-an-itemresponse-in-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!