3

我正在尝试使用 CLASP 将 Google Script 转换为Web App

doGet(e)/中的“e”对象是否存在doPost(e)我可以在 typescript /clasp 方面使用的现有类型定义?

4

1 回答 1

7

更新:

最新定义包括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){
于 2019-05-24T23:04:56.740 回答