gpt4 book ai didi

google-apps-script - 如何在 URL 中包含数据以供 Google Apps Script 网络应用程序读取?

转载 作者:行者123 更新时间:2023-12-05 08:27:11 25 4
gpt4 key购买 nike

我已经制作了我的第一个小型测试网络应用程序,并让该“技术”正常工作,如下所示: enter image description here

下一步是让客户能够点击电子邮件中的状态 URL,以便查看其工作的安排状态。所以,问题:

是否可以创建一个 URL,然后 webapp 可以解析该 URL 并为其提取数据?

URL 类似于: https://script.google.com/a/macros/example.com/s/AKfycbwMgBLtVP8Ur8GKNpGxxjna_zr5BlegmvlFqXQW1g6q5UfksAg/exec/ +123+sample+street+samplesuburb

然后网络应用程序将拉取并显示与该地址相关的日程安排信息。

非常感谢~

最佳答案

您可以检查 doGet() 函数的“e”对象以获取 URL 参数

 // yourUrl/?a=1&b=2&c=3&c=4

function doGet(e){

e.queryString // will be a=1&b=2&c=3&c=4
e.parameter; // will be {"a": "1", "b": "2", "c": "3"}. For parameters that have multiple values, this only returns the first value
e.parameters; // will be {"a": ["1"], "b": ["2"], "c": ["3", "4"]}. Returns array of values for each key.



}

请参阅此处的“URL 参数”部分 https://developers.google.com/apps-script/guides/web

关于google-apps-script - 如何在 URL 中包含数据以供 Google Apps Script 网络应用程序读取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44519009/

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