将表格数据从我的HTML页面发布到我的GAS脚本的最佳/最简单方法是什么?
$(document).ready(function() {
$.getJSON(SCRIPT_URL+"?callback=?", { method:"addRow"}, function (data) { alert(JSON.stringify(data)); });
});
答案 0 :(得分:2)
如果您使用的是Apps脚本HTML服务,则可以使用google.script.run
。
Google Documentation - Client-side API - call server-side Apps Script functions
从Google以外的应用或网站,向Apps脚本网址发出HTTP请求。