在Google Apps脚本的Google文档中插入模板文本

时间:2019-02-27 10:41:16

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

我正在尝试创建一个简单的脚本,以将模板预填充到光标所在的Google文档中。我对如何同时添加文本和列出项目有些困惑。这是我所拥有的:

function onOpen() {
  var ui = DocumentApp.getUi();
  // Or FormApp or SpreadsheetApp.
  ui.createMenu('Templates')
      .addItem('Insert Template', 'insertTemplate')
      .addToUi();

}

function insertTemplate() {
  var cursor = DocumentApp.getActiveDocument().getCursor();
  if (cursor) {

    var element = cursor.insertText("Some Header\n")
    element.setBold(true);

    var options = {weekday: 'long', year: 'numeric', month: 'long', day: 'numeric'};
    var today  = new Date();
    dateStr = today.toLocaleDateString("en-US", options) + '\n\n';

    var element = cursor.insertText(dateStr);
    element.setBold(true);

    var body = DocumentApp.getActiveDocument().getBody();

    colors = ["blue", "red", "yellow"]
    colors.forEach( function(color) { 
      body.appendListItem(color + ": ").setGlyphType(DocumentApp.GlyphType.BULLET);
    });

  } else {
    DocumentApp.getUi().alert('Cannot find a cursor in the document.');
  }
}

它正确输出如下内容:

Feb 12, 2019

Some Header

 * blue
 * red
 * yellow

现在,我想在列表之后添加另一行简单的文本,但是如果我使用光标进行操作,它将在日期之前添加文本。如何找到最后一项的最后位置并在其后插入文本?

1 个答案:

答案 0 :(得分:1)

  • 您要将文本和列表放在光标位置。
  • 您要按如下所示将文本放在最后一行。
您想要的结果
Feb 12, 2019

Some Header

 * blue
 * red
 * yellow

sample text <--- here

如果我的理解是正确的,那么该修改如何?在此修改中,我使用了以下流程。

  1. 在光标处检索子索引。
    • 在此修改中,此子索引用作主体的偏移量。
  2. dateStr"Some Header\n"和列表添加到下一个子索引。
  3. 将文本放在最后一行。

我认为针对您的情况有几种解决方案。因此,请仅考虑其中之一。

修改后的脚本:

function insertTemplate() {
  var doc = DocumentApp.getActiveDocument(); // Added
  var cursor = doc.getCursor(); // Modified
  if (cursor) {
    var options = {weekday: 'long', year: 'numeric', month: 'long', day: 'numeric'};
    var today  = new Date();
    dateStr = today.toLocaleDateString("en-US", options) + '\n\n';
    var body = doc.getBody();

    // Below script was modified.
    var offset = body.getChildIndex(cursor.getElement());
    body.insertParagraph(offset, dateStr);
    body.insertParagraph(++offset, "Some Header\n");
    colors = ["blue", "red", "yellow"]
    colors.forEach(function(color, i) {
      body.insertListItem(++offset, color + ": ").setGlyphType(DocumentApp.GlyphType.BULLET);
    });
    body.insertParagraph(--offset + colors.length, "sample text"); // Please set the text here.

  } else {
    DocumentApp.getUi().alert('Cannot find a cursor in the document.');
  }
}

注意:

  • 关于dateStr,这是从您的脚本中使用的。

参考文献:

如果我误解了您的问题,而这不是您想要的结果,我深表歉意。