gpt4 book ai didi

typescript - doGet/doPost 触发函数事件对象是否有类型定义?

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

我正在尝试将 Google 脚本转换为 Web App ,使用 CLASP。doGet(e) 中是否存在“e”对象的类型定义?/doPost(e)我可以在 typescript/clasp 方面使用吗?

最佳答案

更新:
Latest definitions包括events .
你可以使用这样的事件:

function doGet(e: GoogleAppsScript.Events.DoGet){
Events似乎在 works .它还没有 webapps doget 事件。同时,您可以安装最新的类型(@types/google-apps-script@latest)并在 google-apps-script-events.d.ts 的 Events 模块中添加以下接口(interface)
  export interface WebAppsDoGet { //should be inside module Events
queryString: string,
parameter: {[key: string]: string; },
contextPath: string,
parameters: {
[key: string]: string[]; },
contentLength: number
}
然后你可以像这样使用它:
function doGet(e: GoogleAppsScript.Events.WebAppsDoGet){

关于typescript - doGet/doPost 触发函数事件对象是否有类型定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56299859/

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