gpt4 book ai didi

google-apps-script - 在表单提交事件对象上给出错误 : "TypeError: Cannot read property " 0"from undefined."

转载 作者:行者123 更新时间:2023-12-04 02:12:26 24 4
gpt4 key购买 nike

我正在尝试设置一个基本脚本,该脚本在提交表单时通过电子邮件发送,其目标是(天上掉馅饼)创建一封电子邮件,该电子邮件将发送附加的 outlook 日历邀请。这是我的脚本。

function onFormSubmit(e) {
var userName = e.values[1];
var userEmail = e.values[2];
var subject = "Form Submitted";
var message = "Thank you, " + userName + " for your submission";
MailApp.sendEmail(userEmail, subject, message)
}

Here's an image of my trigger situation

我得到的错误是:“TypeError:无法从未定义中读取属性“0”。”

Here's an image of the Execution transcript

这是我去过的地方: Google Scripts for Sheets - onEdit and "source"

我保证我不会在编辑器中运行 - 我正在填写表格并提交。我知道我必须做一些愚蠢的事情,但我无法弄清楚它是什么。感谢您的帮助。

最佳答案

您的“提交时”触发器正在从绑定(bind)到 Form 的脚本运行,并且 values 属性不可用于发送到 的事件对象表格values 属性仅可用于发送到 电子表格 的事件对象。

查看事件对象:
Event Objects

关于google-apps-script - 在表单提交事件对象上给出错误 : "TypeError: Cannot read property " 0"from undefined.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37080745/

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