我是google app script
的初学者。声明了在单独文件ID中的两个函数,它在Google调试中效果很好。
因此,我部署到Web应用程序,但是当我连接API时,它仅返回我的第一个函数(onGet
)。
是否可能像node
或php
那样使用不同的名称来调用另一个API?即API / A_WEB_SERVICE。 API / B_WEB_SERVICE。
还是我需要添加一个新项目来处理我的情况?
my.js
$.ajax({
type: "get",
url: "https://script.google.com/macros/s/my_key/exec",
data: data,
dataType: "JSON",
success: function (response) {
console.log(response);
alert('cool works.');
}
});
gs
doGet(){} // in my first file.
doDebug(){} // in my second file.