我尝试使用this lib在我的Google工作表中添加列。
但我总是出错:UnhandledPromiseRejectionWarning: TypeError: doc.updateDimensionProperties is not a function
下面是我的代码:
const doc = new GoogleSpreadsheet('google-id');
async function updateTable(token){
await doc.useServiceAccountAuth(require('./credentials.json'));
await doc.updateDimensionProperties("COLUMNS", 5, 1);
}
1条答案
按热度按时间hxzsmxv21#
我相信你的目标和你的情况如下。
updateDimensionProperties()
和google-spreadsheet。修改点:
updateDimensionProperties()
需要用于sheet
对象。updateDimensionProperties()
的自变量似乎是columnsOrRows
,props
,bounds
,bounds.startIndex
和bounds.endIndex
。当以上几点反映到您的脚本中时,它将变成如下所示。
修改的脚本:
发件人:
收件人:
参考文献:
updateDimensionProperties()
的props
。