執行作業資訊
指令碼執行說明
您可以透過 ExecutionInfo
物件的各項方法,存取執行中的指令碼的特定屬性。舉例來說,isPreview()
會告訴您指令碼目前處於預覽狀態,還是正在執行。
這通常可簡化程式碼偵錯作業:
// Code that generates a report.
// ...
if (!AdsApp.getExecutionInfo().isPreview()) {
// Do not email the report when in preview mode!
MailApp.sendEmail("customer@example.com", "Report is ready!", report);
}
指令碼帳戶說明
執行中指令碼通常需要帳戶資訊,尤其是在多個帳戶中使用相同未變更的指令碼時。如果指令碼會透過電子郵件傳送報表,收件者必須識別來源帳戶。您可以使用 Account
物件的 getCustomerId()
方法來執行這項操作:
let accountId = AdsApp.currentAccount().getCustomerId();
MailApp.sendEmail("customer@example.com",
"Report is ready for " + accountId, report);
Account
物件也提供方法,可讓您識別帳戶的幣別和時區。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-03-04 (世界標準時間)。
[null,null,["上次更新時間:2025-03-04 (世界標準時間)。"],[[["Access attributes of a running script using the `ExecutionInfo` object, such as determining if the script is in preview mode with `isPreview()`."],["Utilize the `Account` object to retrieve account information like customer ID (`getCustomerId()`), currency, and time zone, particularly useful when a single script operates across multiple accounts."],["Simplify debugging and reporting by conditionally executing code based on the script's execution mode and including account-specific details in outputs like emails."]]],[]]