我面临一个挑战,即使用 python 以编程方式将模板(即 HTML 模板)插入到 Google 文档中。我知道 Google 文档编辑器或 Google 文档 API 中没有原生/内置功能可以解决我的问题,但我尝试了一些技巧来达到我的目标。这里我们忽略了我们应该插入文档中的“哪里”,现在只要成功插入就足够了。
我的方法是:
application/vnd.google-apps.document
,因为 Google 文档会自动将 HTML 转换为文档。 (不完美,但有效)def insert_template_to_file(target_file_id, content):
media = MediaIoBaseUpload(BytesIO(content.encode('utf-8')), mimetype='text/html', resumable=True)
body = {
'name': 'document_test_html',
'mimeType': 'application/vnd.google-apps.document',
'parents': [DOC_FOLDER_ID]
}
try:
# Create HTML as docs because it automatically convert html to docs
content_file = driver_service.files().create(body=body, media_body=media).execute()
content_file_id = content_file.get('id')
# Collect html content from Google Docs after created
doc = docs_service.documents().get(documentId=content_file_id, fields='body').execute()
request_content = doc.get('body').get('content')
# Insert the content from html to target file
result = docs_service.documents().batchUpdate(documentId=target_file_id, body={'requests': request_content}).execute()
print(result)
# Delete html docs
driver_service.files().delete(fileId=content_file_id).execute()
print("Content inserted successfuly")
except HttpError as error:
# Delete html docs even if failed
driver_service.files().delete(fileId=content_file_id).execute()
print(f"An error occurred: {error}")
问题是:我从第2步收集的内容与batchUpdate()所需的内容不匹配。我正在尝试调整步骤 2 中的内容以匹配步骤 3,但尚未成功。
目标解决方案:获取带有 HTML 代码的字符串,插入将渲染的 HTML 放入 Google Docs 上的目标文件中。目标是将目标文件的现有内容附加到 HTML,而不是覆盖。
我的方法有意义吗?您还有其他想法来实现我的目标吗?
我相信您的目标如下。
target_file_id
的 Google 文档作为覆盖。遗憾的是,现阶段似乎“Method:documents.get”检索到的JSON对象不能直接用作“Method:documents.batchUpdate”的请求体。但是,如果你想用 HTML 覆盖现有的 Google 文档,我认为仅使用 Drive API 就可以实现。当这反映在示例脚本中时,下面的示例脚本怎么样?
def insert_template_to_file(target_file_id, content):
media = MediaIoBaseUpload(BytesIO(content.encode('utf-8')), mimetype='text/html', resumable=True)
body = {'mimeType': 'application/vnd.google-apps.document'}
try:
result = drive_service.files().update(fileId=target_file_id, body=body, media_body=media).execute()
print(result)
print("Content inserted successfuly")
except HttpError as error:
print(f"An error occurred: {error}")
target_file_id
的 Google 文档。因此,当您测试此脚本时,我建议使用示例 Google 文档。