Is there a way to save html text to a file in google drive using apps script?(有没有办法使用应用程序脚本将 html 文本保存到谷歌驱动器中的文件?)
问题描述
有没有办法使用应用程序脚本将 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 文本保存到谷歌驱动器中的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法使用应用程序脚本将 html 文本保存到


基础教程推荐
- Bootstrap 模态出现在背景下 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01