線上書籍

Home

網頁前端設計工程師培訓班

  1. 取得指令碼屬性 //------------------------------------- 1. GAS全域變數的方法 var SCRIPT_PROP = PropertiesService.getScriptProperties(); // new property service

     

  2. 將變數存入 //-------------------------------------------- 把變數存入指令碼屬性 SCRIPT_PROP.setProperty("ssId", Sheet.getSs().getId()); SCRIPT_PROP.setProperty("adminEmail", Session.getActiveUser().getEmail());//管理員email

     

  3. 使用指令碼屬性 global['isAdmin'] = SCRIPT_PROP.getProperty("adminEmail") == Session.getActiveUser().getEmail() ? true : false;

     

  4. 取得網頁應用程式網址 ScriptApp.getService().getUrl();//取得網頁應用程式網址