عرض عنوان URL لتطبيق الويب، إذا تم نشره؛ إلى إرجاع null. إذا كنت
عند تشغيل تطبيق الويب لوضع التطوير، سيؤدي هذا إلى إرجاع عنوان URL لوضع التطوير.
// 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 — عنوان URL لتطبيق الويب
isEnabled()
تعرض true إذا كان النص البرمجي يمكن الوصول إليه كتطبيق ويب.
الإرجاع
Boolean — true إذا تم نشر النص البرمجي كتطبيق ويب false إن لم يكن
طرق متوقّفة نهائيًا
disable()
تمّت إزالة هذا العمود. تم إيقاف هذه الدالة نهائيًا ويجب عدم استخدامها في النصوص البرمجية الجديدة.
لإيقاف الوصول إلى النص البرمجي كتطبيق ويب. تعادل هذه الطريقة فتح
نشر > نشر كتطبيق ويب" والنقر على "إيقاف تطبيق الويب".
تاريخ التعديل الأخير: 2024-08-29 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","easyToUnderstand","thumb-up"],["ساعَدني المحتوى في حلّ مشكلتي.","solvedMyProblem","thumb-up"],["غير ذلك","otherUp","thumb-up"]],[["لا يحتوي على المعلومات التي أحتاج إليها.","missingTheInformationINeed","thumb-down"],["الخطوات معقدة للغاية / كثيرة جدًا.","tooComplicatedTooManySteps","thumb-down"],["المحتوى قديم.","outOfDate","thumb-down"],["ثمة مشكلة في الترجمة.","translationIssue","thumb-down"],["مشكلة في العيّنات / التعليمات البرمجية","samplesCodeIssue","thumb-down"],["غير ذلك","otherDown","thumb-down"]],["تاريخ التعديل الأخير: 2024-08-29 (حسب التوقيت العالمي المتفَّق عليه)"],[[["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."]]],[]]