Không cho phép truy cập tập lệnh dưới dạng ứng dụng web.
Tài liệu chi tiết
getUrl()
Trả về URL của ứng dụng web nếu ứng dụng đã được triển khai; nếu không thì sẽ trả về null. Nếu bạn
đang chạy ứng dụng web ở chế độ phát triển, hàm này sẽ trả về url chế độ phát triển.
// 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());
Cầu thủ trả bóng
String – URL của ứng dụng web
isEnabled()
Trả về true nếu tập lệnh có thể truy cập được dưới dạng ứng dụng web.
Cầu thủ trả bóng
Boolean – true nếu tập lệnh được xuất bản dưới dạng ứng dụng web; false nếu không
Các phương thức ngừng hoạt động
disable()
Không dùng nữa. Hàm này không được dùng nữa và không nên dùng trong các tập lệnh mới.
Không cho phép truy cập tập lệnh dưới dạng ứng dụng web. Phương thức này tương đương với việc mở
"Xuất bản > Triển khai dưới dạng ứng dụng web" và nhấp vào "tắt ứng dụng web".
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2024-08-29 UTC."],[[["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."]]],[]]