我在Google电子表格中使用了一个Google脚本从中导出一些数据。他们最近更新了电子表格,但出现此错误:
UiApp已被弃用。请改用HtmlService
var app = UiApp.createApplication().setTitle('Export');
有人有这个问题吗,有解决办法吗?
谢谢
答案 0 :(得分:0)
起点:
function openDialog() {
var html = HtmlService.createHtmlOutputFromFile('export');
SpreadsheetApp.getUi()
.setWidth(640)
.setHeight(400);
.showModalDialog(html, 'Export');
}