将google doc转换为pdf会导致空白pdf,google脚本

时间:2018-08-31 09:34:56

标签: javascript google-apps-script google-sheets google-docs

这是我的代码,用于创建Google文档(最终从电子表格中)粘贴一些信息,将其转换为PDF并通过电子邮件发送给我自己。

不幸的是,尽管驱动器中的文档具有“此文档是由Google Apps脚本创建的”。在其中评论,电子邮件中的pdf没有。它具有正确的标题,但是页面的内容丢失了。我已经尝试了一些有关堆栈溢出的示例,但到目前为止还没有一个可用。

var ss = SpreadsheetApp.getActive();

function onOpen(){
var ui = SpreadsheetApp.getUi(); 
ui.createMenu('TEST MENU') //creates main menu tab 
   .addItem('pdf', 'pdf') 
   .addToUi(); 
}

function pdf() {
  // Create a new Google Doc named 'Hello, world!'
  var doc = DocumentApp.create('Hello, world!');

  // Access the body of the document, then add a paragraph.
  doc.getBody().appendParagraph('This document was created by Google Apps Script.');

 var pdfContent = doc.getAs('application/pdf');
 var draftMail = GmailApp.createDraft('will@exampleEmail.co.uk',
                                   'Email title', 'Pls see attached', 
                                   {
                                     attachments: [pdfContent.getAs(MimeType.PDF)],
                                     name: 'Converted doc content'
                                   });
// Now send the mail
draftMail.send();
}

1 个答案:

答案 0 :(得分:1)

您不会在将文档转换为pdf之前保存并关闭该文档,也许这就是为什么您的更改不会被清除的原因。

尝试这样的事情:

var ss = SpreadsheetApp.getActive();

function onOpen() {
    var ui = SpreadsheetApp.getUi();
    ui.createMenu('TEST MENU') //creates main menu tab 
        .addItem('pdf', 'pdf')
        .addToUi();
}

function pdf() {
    var doc = DocumentApp.create('Hello, world!');
    doc.getBody().appendParagraph('This document was created by Google Apps Script.');
    doc.saveAndClose()

    var pdfContent = doc.getAs('application/pdf');
    var draftMail = GmailApp.createDraft('will@exampleEmail.co.uk',
        'Email title', 'Pls see attached', {
            attachments: [pdfContent.getAs(MimeType.PDF)],
            name: 'Converted doc content'
        });
    draftMail.send();
}

参考:https://developers.google.com/apps-script/reference/document/document#saveandclose