網頁前端設計工程師培訓班
- 取得指令碼屬性
//------------------------------------- 1. GAS全域變數的方法
var SCRIPT_PROP = PropertiesService.getScriptProperties(); // new property service
- 將變數存入
//-------------------------------------------- 把變數存入指令碼屬性
SCRIPT_PROP.setProperty("ssId", Sheet.getSs().getId());
SCRIPT_PROP.setProperty("adminEmail", Session.getActiveUser().getEmail());//管理員email
- 使用指令碼屬性
global['isAdmin'] = SCRIPT_PROP.getProperty("adminEmail") == Session.getActiveUser().getEmail() ? true : false;
- 取得網頁應用程式網址
ScriptApp.getService().getUrl();//取得網頁應用程式網址