Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让一个独立的应用程序输出除 HTML 之外的任何其他内容类型。即如果我想输出纯文本以便它可以被另一个应用程序使用(创建一个简单的网络服务)?
本周我们推出了 ContentService,它允许您以 JSON、ATOM 和纯文本等格式返回内容。
function doGet(e) { return ContentService.createTextOutput('Hello World') .setMimeType(ContentService.MimeType.TEXT); }