gpt4 book ai didi

javascript - 应用程序制作工具删除表中的项目并更新

转载 作者:行者123 更新时间:2023-12-03 02:19:04 26 4
gpt4 key购买 nike

我有一个应用程序,我希望能够从 Google 电子表格中获取列,并在我的应用程序中的表格上创建一个列表。我还希望能够从此表中删除项目。

到目前为止我正在使用AMU库函数AMU.deleteAll,它所做的只是

AMU.deleteAll = function(widget){
var records = widget.datasource.items;
records.forEach(function(record){
record._delete();
});
};

因此,当我有一个全新的空白表格时,当我使用 AMU.import.fromSpreadsheet 时,我的应用程序可以从我的电子表格进行更新(在此处查看完整的库 goo.gl/RkeqZw )它将从我的电子表格中取出所有项目并将它们正确地放置在我的表格中,之后我可以使用删除功能删除表格上的所有项目。这就是事情变得棘手的地方,当我再次尝试使用导入功能时,列表中会填充空条目,如果我尝试使用删除功能,则会收到错误:

"Drive Table internal error. Record not found. Caused by: Execution Failed. More information: Object not found at path: camo0A_084fQ. (HTTP status code: 404) Error: Drive Table internal error. Record not found. at deleteAllData (ServerScript:232)"

我不确定为什么会发生这种情况,对我来说,似乎正在保存数据,而删除功能仅删除该值,而不是实际的条目。

最佳答案

如果您想从模型中删除所有项目,您可以进行单个服务器调用(上面引用的代码确实对客户端上加载的每个单独项目进行服务器调用):

// server script to delete all records from model
function deleteAllRecordsFromModel() {
var allRecords = app.models.MyModel.newQuery().run();
app.deleteRecords(allRecords);
}

// client script to call server function
google.script.run
.withSuccessHandler(function() {
// TODO: Handle success (optional)
})
.withFailureHandler(function() {
// TODO: Handle error (optional)
})
.deleteAllRecordsFromModel();

关于javascript - 应用程序制作工具删除表中的项目并更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49242888/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com