GTLRSheetsQuery_SpreadsheetsValuesBatchGet如何特定范围?

时间:2018-11-18 16:57:05

标签: swift google-sheets-api

我正在尝试使用Google API来读取Google表格的一系列值。我设法使其与GTLRSheetsQuery_SpreadsheetsValuesGet一起使用。

但是当我想使用多个范围时 GTLRSheetsQuery_SpreadsheetsValuesBatchGet,它将无法正常工作。

根据文档,在GTLRSheetsQuery_SpreadsheetsValuesGet上使用类方法

`Fetches a @c GTLRSheets_ValueRange.

Returns a range of values from a spreadsheet. The caller must specify the spreadsheet ID and a range.

**Parameters**
**spreadsheetId**
The ID of the spreadsheet to retrieve data from.

***range***
The A1 notation of the values to retrieve.

Return Value
GTLRSheetsQuery_SpreadsheetsValuesGet

Declared In
GTLRSheetsQuery.h`

ValuesGet的参数是工作表ID和范围。但是在GTLRSheetsQuery_SpreadsheetsValuesBatchGet文档中,不允许我放置范围参数。

 Fetches a @c GTLRSheets_BatchGetValuesResponse.

Returns one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges.

**Parameters**
**spreadsheetId**
The ID of the spreadsheet to retrieve data from.

Return Value
GTLRSheetsQuery_SpreadsheetsValuesBatchGet

Declared In
GTLRSheetsQuery.h

如果不允许我声明范围,我将如何具体说明?

0 个答案:

没有答案