服务器端更改后客户端重新加载记录

问题描述 投票:1回答:1

在服务器脚本中调用app.saveRecords()之后,我必须在任何客户端页面上点击刷新(在Chrome中)以重新加载数据源。我可以在服务器上的saveRecords()之后调用以强制客户端刷新吗?

google-app-maker
1个回答
1
投票

此客户端脚本代码有效:

function addCont(widget) {

  var holder = widget.root.descendants;

  var con = {
    barcode: holder.Barcode.value,
    part: holder.Part.value,
    location: holder.Location.value
  };

  google.script.run.withSuccessHandler(function(result) {
    console.log("Container Added");

    // This forces the other pages to reload after the server adds the record
    widget.root.datasource.load();

    clearAddCont(widget);
  }).addContainer(con);
}
© www.soinside.com 2019 - 2024. All rights reserved.