有没有办法使用应用程序脚本将 html 文本保存到谷歌驱动器中的文件?我的应用程序发回一个 html 字符串,我想将其作为 .html 文件保存到驱动器中,就像我将 HTML 文件上传到驱动器一样.然后,我打算将此 .html 文件作为 google doc 打开,这会将其转换为 doc 格式.我已经手动尝试过这个过程,效果很好.只需要在脚本中完成.
Is there a way to save html text to a file in google drive using apps script? My app sends back an html string, which I want to save as an .html file into drive, as if I'd uploaded an HTML file to drive. I then intend on opening this .html file as a google doc, which will convert it to a doc format. I've tried this procedure manually, and it works well. Just need to do it in a script.
更重要的是,我想要一种直接将 HTML 转换为谷歌文档的方法.
More to the point, I'd love a direct way to convert HTML into a google doc.
var url = 'YOUR PAGE;
var p = SitesApp.getPageByUrl(url);
var html = p.getHtmlContent();
var blob = DriveApp.createFile('dummy',html, 'text/html').getBlob();
var resource = {
title: 'YOUR FILE NAME',
convert: true,
mimeType: 'application/vnd.google-apps.document'
};
Drive.Files.insert(resource,blob);
这篇关于有没有办法使用应用程序脚本将 html 文本保存到谷歌驱动器中的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何复制 div onclick 事件?How can I duplicate a div onclick event?(如何复制 div onclick 事件?)
从谷歌驱动器打开 htmlopening html from google drive(从谷歌驱动器打开 html)
谷歌应用程序脚本从二进制文件中获取字节范围Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
使用 Google 脚本从 Google Drive 发送多个附件Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
在您的公司网络中分发适用于表格的 Google Apps 脚Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
“共享驱动器"Google Apps 脚本中的支持quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)