我正在尝试在 Google 站点中嵌入带有 URL 参数的 Apps 脚本小工具,但呈现的小工具会忽略 URL 参数。它只能检索 Google-site-url 参数。请在此处查看。
小工具的 Apps 脚本代码是
function doGet(e){
var app = UiApp.createApplication();
if(e.parameter.page == 'hello') app.add(helloPanel_());
else app.add(hiPanel_());
return app;
}
function helloPanel_(){
var app = UiApp.getActiveApplication();
return app.createLabel('You are at hello panel');
}
function hiPanel_(){
var app = UiApp.getActiveApplication();
return app.createLabel('You are at hi panel');
}
在使用新结构重新命名 Google Apps 脚本小工具 URL 之前,这种方法过去一直有效。
我想知道这是预期功能还是错误?如果有错误,我会报告它问题跟踪器。