1

I am building an application using google app maker with google sheets as the back end. How can I access the google sheet that saves the data I intake using the application?

4

2 回答 2

4

App Maker 实际上并不将数据存储在工作表中,而是将其存储在与您的应用关联的自定义数据库中。现在查看该数据库内容的最佳方法是在您的应用程序中创建一个新页面并将一个表格小部件拖到其中。如果要允许编辑,也可以将字段设置为可编辑。

于 2017-05-16T16:20:10.230 回答
1

只是把它扔在那里,但我在我的一个 AppMaker 应用程序中所做的是使用服务器脚本导出到我创建的工作表。基本上使用 SheetsApp API 来编辑: sheet = SpreadSheetApp.openById(spreadsheetFileId).insertSheet(1);

我创建了一个新数组 newRow = [];

然后我使用 for-in 循环遍历我的应用程序数据库和 newRow.push 中的数据,然后使用sheet.appendRow(newRow);

然后我最终得到一张与我的数据库中的数据匹配的工作表。

希望有帮助。

于 2017-09-09T00:49:07.370 回答