突出显示google drive中文档中的文字

时间:2018-05-16 16:32:26

标签: php google-apps-script google-drive-api

我的谷歌应用脚​​本存在问题 我正在使用php将文件上传到驱动器,该文件正在插入以成功驱动。但是,当我想编辑我的文档以突出显示使用谷歌应用程序脚本的单词我收到错误,谷歌驱动器和谷歌文档的文件ID 是不同的,所以我无法在谷歌编辑文件docs使用app脚本。请查看我的代码并建议我

我正在使用google docs链接进行编辑,但我拥有的文件ID是驱动器文件ID,所以建议我怎样才能获得

   function doGet(param){
            var files = DriveApp.getFilesByName('11008.doc');
            while (files.hasNext()) {
                var file = files.next();
                var url = file.getUrl();
                url = url.replace("?usp=drivesdk","");
                Logger.log(url);
                var doc = DocumentApp.openByUrl('https://docs.google.com/document/d/18CEwLeTLwsQ_xR2BLWqs5E1lQrd9SsNuUwlnBpWLQro/edit');
                var textToHighlight = 'MA';
                var highlightStyle = {};
                highlightStyle[DocumentApp.Attribute.FOREGROUND_COLOR] = '#FF0000';
                var paras = doc.getParagraphs();
                var textLocation = {};
                var i;

                for (i=0; i<paras.length; ++i) {
                    textLocation = paras[i].findText(textToHighlight);
                    if (textLocation != null && textLocation.getStartOffset() != -1) {
                        textLocation.getElement().setAttributes(textLocation.getStartOffset(),textLocation.getEndOffsetInclusive(), highlightStyle);
                    }
                }
                return doc;
            } 
        }  

1 个答案:

答案 0 :(得分:0)

也许这会有所帮助:

function highLightText(txt,from) {
  var highlight={};
  highlight[DocumentApp.Attribute.BACKGROUND_COLOR]='#ff0000';
  var from=from || '';
  var txt=txt || '';
  var doc=DocumentApp.getActiveDocument();
  var body=doc.getBody();
  if(from){
    var rgel=body.findText(txt, from);
  }else{
    var rgel=body.findText(txt);
  }
  if(rgel){
    var el=rgel.getElement();
    var start=rgel.getStartOffset();
    var end=rgel.getEndOffsetInclusive();
    if(rgel.isPartial()){
      el.asText().setAttributes(start, end, highlight)
    }else{
      el.asText().setAttributes(highlight);
    }
    highLightText(txt,rgel);
  }
}