早上好
我正在使用该库(https://github.com/theoephraim/node-google-spreadsheet)与Google表格一起使用,看来身份验证工作正常,但是当我恢复与它们一起使用的表格时,会抛出一个奇怪的错误而且我不知道如何解决。 以下代码(在doc.getInfo中)不起作用:
function getInfoAndWorksheets (step) {
console.log('jj')
doc.getInfo(function (err, info) {
console.log('cvcv')
console.log(info)
console.log('Loaded doc: ' + info.title + ' by ' + info.author.email)
var sheet = info.worksheets[0]
console.log('sheet 1: ' + sheet.title + ' ' + sheet.rowCount + 'x' + sheet.colCount)
console.log(err)
step()
})
}
错误是下一个错误:err =错误:在Zlib._handle.onerror(webpack-internal:///../node_modules/browserify-zlib/lib/index.js:352:17)处的标头检查不正确Zlib._error(
您可以在下一张照片中看到错误: https://www.photobox.co.uk/my/photo/full?photo_id=501798366536
答案 0 :(得分:0)
尝试一下
const doc = new GoogleSpreadsheet('<Spreadsheet ID>', null, { gzip: false })