Content Service
Treść
Ta usługa umożliwia skryptom wyświetlanie tekstu w różnych formatach, takich jak tekst, XML lub JSON. Zobacz też przewodnik po usłudze Content Service. Jeśli wdrożysz podany niżej skrypt jako aplikację internetową, w przeglądarce zobaczysz komunikat „Hello, world”:
function doGet() {
return ContentService.createTextOutput('Hello, world!');
}
Zajęcia
Nazwa | Krótki opis |
ContentService | Usługa zwracająca zawartość tekstową ze skryptu. |
MimeType | Enum typów MIME, które mogą być wyświetlane ze skryptu. |
TextOutput | Obiekt TextOutput, który może być wyświetlany ze skryptu. |
Właściwości
Właściwość | Typ | Opis |
CSV | Enum | Typ MIME pliku CSV |
ICAL | Enum | Typ MIME ICAL |
JAVASCRIPT | Enum | Typ MIME JAVASCRIPT |
JSON | Enum | Typ mime JSON |
TEXT | Enum | Typ MIME tekstowy |
VCARD | Enum | Typ MIME vCard |
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2024-12-21 UTC.
[null,null,["Ostatnia aktualizacja: 2024-12-21 UTC."],[[["The Content Service enables scripts to serve content like text, XML, or JSON, offering flexibility in data delivery."],["Developers can utilize the ContentService class to generate and manipulate text output within their scripts."],["MimeType aids in specifying the desired format for content delivery, accommodating various data types like CSV, JSON, and more."],["The TextOutput class provides methods for managing the content, allowing for appending, clearing, and setting the output's format."],["Content served through scripts can be customized for display in browsers or downloaded as files, offering versatile content handling."]]],[]]