在服务器脚本中调用app.saveRecords()之后,我必须在任何客户端页面上点击刷新(在Chrome中)以重新加载数据源。我可以在服务器上的saveRecords()之后调用以强制客户端刷新吗?
此客户端脚本代码有效:
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);
}