我正在爲googlespreadsheet編寫一些腳本。其中一個功能需要獲取用戶輸入。之後,我需要在一些其他功能中使用輸入,我在下面顯示了一個示例。問題是,每次我需要使用輸入時,是否需要調用函數「Setup()」?這將意味着要求多次輸入,我知道這是愚蠢的。私有/公共變量Javascript
我該如何解決這個問題?
謝謝!
var setupdone = false;
function Setup(){
if(!setupdone){
numofTeams = Browser.inputBox('Confirm the number of Teams');
var ui = Browser.msgBox('Ensure that the teams are arranged according to lane allocations below', Browser.Buttons.OK_CANCEL);
setupdone = true;
}
var semisraw = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Secondary Group 1');
var range = semisraw.getDataRange();
values = range.getValues();
};
function numofTeamsprint(){
Setup();
Browser.msgBox('Setup is Complete!');
};
謝謝!這很清楚 – CodeNewbie