يمنع هذا الخيار الوصول إلى النص البرمجي كتطبيق ويب.
مستندات تفصيلية
getUrl()
تعرِض هذه السمة عنوان 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-12-02 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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-12-02 (حسب التوقيت العالمي المتفَّق عليه)"],[[["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."]]],[]]