所以,我已经修改了一些代码,将文件搜索的描述字段添加到电子表格中,这对我有用。但是,理想情况下,我想进行文件搜索,然后将google文档标题部分中的详细信息添加到电子表格列中。
我假设的问题是:var header = file.getHeader();
如何查询执行的搜索以返回文档标题的内容?有人可以帮忙吗?
function onOpen() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var searchMenuEntries = [ {name: "Search in all files", functionName: "search"}];
ss.addMenu("Search Google Drive", searchMenuEntries);
}
function search() {
// Prompt the user for a search term
var searchTerm = Browser.inputBox("Enter the search parameters");
// Get the active spreadsheet and the active sheet
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getActiveSheet();
// Search the files in the user's Google Drive for the search term
// See documentation for search parameters you can use
// https://developers.google.com/apps-script/reference/drive/drive-app#searchFiles(String)
var files = DriveApp.searchFiles("fullText contains '"+searchTerm.replace("'","\'")+"'");
var output = [];
while (files.hasNext()) {
var file = files.next();
var fileId = file.getId();
var fileType = file.getMimeType();
if (fileType === MimeType.GOOGLE_DOCS) {
var doc = DocumentApp.openById(fileId);
var name = doc.getName();
var header= doc.getHeader().getText();
var url = doc.getUrl();
// Set up the spreadsheet to display the results
var headers = [["File ID", "File Type", "File Name", "Header", "URL"]];
sheet.clear();
sheet.getRange("A1:E1").setValues(headers);
// push the file details to our output array (essentially pushing a row of data)
output.push([ fileId, fileType, name, header, url]);
}
// write data to the sheet
sheet.getRange(2, 1, output.length, 5).setValues(output);
}
}
答案 0 :(得分:0)
手动将标题插入文档,然后打开文档并从网址中获取ID。然后运行一些测试代码:
function getHeader() {
var doc = DocumentApp.openById('your ID here');
var hdear = doc.getHeader();
Logger.log('hdear: ' + hdear);
};
从脚本编辑器运行代码,然后在VIEW菜单中打开LOGS。您也可以使用调试器逐行运行代码。
在日志中,它应显示“HeaderSection”
应该使用DriveApp获取文件列表,但是您需要使用DocumentApp
来获取标题。
function myFunction() {
var files = DriveApp.searchFiles("fullText contains '"+searchTerm.replace("'","\'")+"'");
var output = [];
while (files.hasNext()) {
var file = files.next();
var fileId = file.getId();
var fileType = file.getMimeType();
if (fileType === MimeType.GOOGLE_DOCS) {
var doc = DocumentApp.openById(fileId);
var name = doc.getName();
var header= doc.getHeader().getText();
var url = doc.getUrl();
output.push(name);
output.push(fileType);
output.push(header);
output.push(url);
};
};
var outerArray = [];
outerArray.push(output);
// write data to the sheet
sheet.getRange(2, 1, outerArray.length, output.length).setValues(outerArray);
};