gpt4 book ai didi

javascript - 从Google表单提交按钮运行Google表格脚本

转载 作者:行者123 更新时间:2023-12-03 16:29:43 34 4
gpt4 key购买 nike

我有一个Google表单及其有关从用户获取数据的表单,我需要在用户以google表单提交其信息并将验证短信发送给他们之后,从google sheet获取用户电话号码。

我想获得一个“事件表单”以提交按钮,谷歌在其纪录片中有一个“提交”功能,但是我不知道它的工作方式或使用方式,因为那里没有示例!

我为此编写了所有代码,我只需要使用提交按钮即可。

最佳答案

您可以使用以下功能-

function onFormSubmit(e) {
var formItems = FormApp.getActiveForm().getItems();

var userPhoneNumber = e.response.getResponseForItem(formItems[x]).getResponse();
// replace 'x' with 0 if phone number is the first item or
// with the actual number depending on the nth item of your form
// (i.e. if userPhoneNumber is the 2nd item, replace x with 1,
// if its the 3rd item, replace x with 2 etc.)


// now you write your function to trigger SMS to the 'userPhoneNumber' value
}


希望这可以帮助。

关于javascript - 从Google表单提交按钮运行Google表格脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58028069/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com