我正在尝试使用 CLASP 将 Google Script 转换为Web App。
doGet(e)
/中的“e”对象是否存在doPost(e)
我可以在 typescript /clasp 方面使用的现有类型定义?
我正在尝试使用 CLASP 将 Google Script 转换为Web App。
doGet(e)
/中的“e”对象是否存在doPost(e)
我可以在 typescript /clasp 方面使用的现有类型定义?
最新定义包括events
. 你可以使用这样的事件:
function doGet(e: GoogleAppsScript.Events.DoGet){
Events
似乎在进行中。它还没有 webapps doget 事件。同时,您可以安装最新的类型(@types/google-apps-script@latest)并在 google-apps-script-events.d.ts 的 Events 模块中添加以下接口
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){