我面臨一個挑戰,使用 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 文件上的目標檔案。目標是將目標檔案的現有內容附加到 html,而不是覆蓋。
我的方法有意義嗎?您還有其他想法可以實現我的目標嗎?
我相信您的目標如下。
遺憾的是,現階段「method:documents.get」檢索到的json物件似乎無法直接用作「method:documents.batchupdate」的請求體。
但是,如果您想將 html 附加到現有的 google 文件中,我認為僅使用 drive api 即可實現。當這反映在範例腳本中時,下面的範例腳本怎麼樣?
def insert_template_to_file(target_file_id, content): request = drive_service.files().export(fileId=target_file_id, mimeType="text/html") file = BytesIO() downloader = MediaIoBaseDownload(file, request) done = False while done is False: status, done = downloader.next_chunk() print("Download %d%%" % int(status.progress() * 100)) file.seek(0) current_html = file.read() media = MediaIoBaseUpload(BytesIO(current_html + 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 文件。 以上是如何使用 Python 將渲染的 HTML 範本插入 Google 文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!