Class Service
方法
方法 | 傳回類型 | 簡短說明 |
getUrl() | String | 傳回網頁應用程式的網址 (如果已部署);否則會傳回 null 。 |
isEnabled() | Boolean | 如果指令碼可透過網頁應用程式存取,則傳回 true 。 |
內容詳盡的說明文件
getUrl()
傳回網頁應用程式的網址 (如果已部署);否則會傳回 null
。如果發生以下情況:
正在執行開發模式網頁應用程式,這會傳回開發模式網址。
// Mail the URL of the published web app.
MailApp.sendMail("myself@example.com", "My Snazzy App",
"My new app is now available at " + ScriptApp.getService().getUrl());
回攻員
String
:網頁應用程式的網址
isEnabled()
如果指令碼可透過網頁應用程式存取,則傳回 true
。
回攻員
Boolean
- true
如果指令碼是以網頁應用程式的形式發布;如果不需要,則設為false
已淘汰的方法
disable()
已淘汰。這個函式已淘汰,不應用於新的指令碼。
禁止以網頁應用程式形式存取指令碼。此方法等同於開啟
「發布 >部署為網頁應用程式對話框,然後按一下 [停用網路應用程式]。
ScriptApp.getService().disable();
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-09-12 (世界標準時間)。
[null,null,["上次更新時間:2024-09-12 (世界標準時間)。"],[[["The `ScriptApp` service allows you to control and interact with the deployment of your script as a web application."],["You can retrieve the web app's URL using `getUrl()`, check its accessibility status with `isEnabled()`, and previously, disable it using the now deprecated `disable()` method."],["The `disable()` method has been deprecated and should no longer be used in new scripts, replaced by the \"Publish \u003e Deploy as web app\" dialog for disabling."],["When deploying your script as a web app, you can use provided methods to obtain its URL and determine if it's enabled for access."]]],[]]