您好我是新来的,所以如果我问一个愚蠢的问题,请原谅我。
我们AppAtSchool正在与Google ApMaker合作,我们希望使用2个参数调用已发布的应用程序。我们怎样才能在App Maker中阅读这些内容?提前谢谢!
答案 0 :(得分:2)
我猜,您正在尝试阅读网页网址参数。在这种情况下,您可以传递如下参数:
sort=stars
然后在页面onAttach事件(https://developers.google.com/appmaker/ui/logic#events)中阅读它们:
https://script.google.com/<SomeMagic>/exec/?param1=value1¶m2=value2#PageName
也许您还需要一种方法来使用参数来创建此类链接:
答案 1 :(得分:1)
您可以使用以下网址调用您的应用:script.google.com/blablabla/#viewname/paramValue,并在客户端获取参数并将其发送到服务器端。
答案 2 :(得分:0)
如果您通过网址参数将参数传递到App Maker应用,您的应用可以使用google.script.url.getLocation方法读取参数:
google.script.url.getLocation(function(location) {
console.log(location.parameters);
console.log(location.hash);
});
查找更多详情in the documentation