我试图替换“不同的第一页页眉/页脚”处于事件状态的 Google 文档页眉中的文本。我成功地替换了除第一页之外的任何其他页眉中的文本。
...

var something = "Some string.";
var copyId = DriveApp.getFileById(docTemplate).makeCopy(name).getId();
var copyDoc = DocumentApp.openById(copyId);
var copyHeader = copyDoc.getHeader();
copyHeader.replaceText('keySomething', something);

...

我查看了文档,但没有看到如何去做。我什至尝试过“getHeaders()”(复数形式),但该类不存在。
如何替换第一页页眉/页脚中的文本?

谢谢,

伊万

最佳答案

copyHeader.getParent().getChild(2); //I'm using your variable

这将指向第一页 上的 header 。 getChild(2) 中的“2”可能会也可能不会有所不同,但我在此答案的第三个代码块上添加了一个函数 seeChildren()

如果您尝试替换文档中字符串的所有实例,请将其与 replaceText() 一起使用
copyHeader.getParent(); /*this points to the whole document (unless the
                          header's parents is not the whole)*/
//getbody(), getfooter(), etc (i.e. siblings of header) should work

如果你想知道 页脚 getChild(x) 的 x,
function seeChildren(){
  var doc = DocumentApp.getActiveDocument();
  var bod = doc.getBody();
  var fol = bod.getParent();
  for (i = 0; i<fol.getNumChildren(); i++){
    var child = fol.getChild(i);
    bod.appendParagraph(child + ": Index " + fol.getChildIndex(child));
  }
}

这将在正文部分附加文档子项的名称(DocumentBodySection、HeaderSection、HeaderSection、FooterSection、FooterSection 等)及其各自的索引(0,1,2,...,子项数减 1)。另请注意,这使用 getActiveDocument() ,该文件必须打开才能使函数工作。

关于javascript - 如何使用 Google Apps Script 在文档中获取多个页眉/页脚,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30877330/

10-11 01:50