Google电子表格apis:使用worksheetid在特定工作表中添加/更新行的API

时间:2017-07-04 08:32:35

标签: api spreadsheet

我正在搜索rest API,我可以在特定的工作表中添加/更新一行。 V4版本的其余API采用spreadsheetID并在默认(第一个)工作表中添加行。但是,我想编写一个脚本,以使用工作表ID在工作表中添加/更新行。

请帮忙 谢谢,

1 个答案:

答案 0 :(得分:0)

不知道您是否找到了答案,但可以更新/插入特定的doc电子表格。

首先获取有关文档的信息

const GoogleSpreadsheet = require('google-spreadsheet');
const doc = new GoogleSpreadsheet(spreadsheetKey);    
const info = await Promise.promisify(doc.getInfo)();

在此之后,您可以浏览所有列表并更新自己的列表。

const sheetName = "your name of the sheet"    
for (let sheet of info.worksheets) {            
      if(sheet.title === sheetName){
          //do the rest of addRow etc.
      }
    }

度过愉快的一天