UiApp已弃用。请改用HtmlService

时间:2019-02-09 09:43:29

标签: google-apps-script google-sheets

我在Google电子表格中使用了一个Google脚本从中导出一些数据。他们最近更新了电子表格,但出现此错误:

  

UiApp已被弃用。请改用HtmlService

var app = UiApp.createApplication().setTitle('Export');

有人有这个问题吗,有解决办法吗?

谢谢

1 个答案:

答案 0 :(得分:0)

起点:

function openDialog() {
  var html = HtmlService.createHtmlOutputFromFile('export');
  SpreadsheetApp.getUi()
      .setWidth(640)
      .setHeight(400);
      .showModalDialog(html, 'Export');
}

文档:https://developers.google.com/apps-script/guides/html/