访问和修改现有数据源图表。
仅将此类与连接到 BigQuery 数据库的数据搭配使用。
方法
方法 | 返回类型 | 简介 |
---|---|---|
cancel | Data | 取消与此对象关联的数据刷新(如果当前正在运行)。 |
force | Data | 刷新此对象的数据,无论当前状态如何。 |
get | Data | 获取对象关联的数据源。 |
get | Data | 获取对象的数据执行状态。 |
refresh | Data | 刷新对象的数据。 |
wait | Data | 等待当前执行操作完成,并在提供的秒数后超时。 |
详细文档
cancel Data Refresh()
取消与此对象关联的数据刷新(如果当前正在运行)。
以下示例展示了如何取消公式刷新。
const spreadsheet = SpreadsheetApp.getActive(); const formula = spreadsheet.getDataSourceFormulas()[0]; // Cancel the ongoing refresh on the formula. formula.cancelDataRefresh();
如果数据源类型未启用,则会抛出异常。使用 Spreadsheet
方法为特定数据源类型启用数据执行。
返回
Data
- 数据对象。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
force Refresh Data()
无论当前状态如何,都会刷新此对象的数据。如需了解详情,请参阅 refresh
。如果您想取消当前正在运行的此对象刷新,请参阅 cancel
。
如果数据源类型未启用,则会抛出异常。使用 Spreadsheet
方法为特定数据源类型启用数据执行。
返回
Data
- 数据对象。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
get Data Source()
获取对象关联的数据源。
返回
Data
- 数据源。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
get Status()
获取对象的数据执行状态。
返回
Data
- 数据执行状态。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
refresh Data()
刷新对象的数据。
如果当前处于 error
状态,则会抛出异常。使用 Data
更新规范。建议使用此方法,而不是 force
,以防止对数据源进行意外修改。
如果数据源类型未启用,则会抛出异常。使用 Spreadsheet
方法为特定数据源类型启用数据执行。
返回
Data
- 数据对象。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets
wait For Completion(timeoutInSeconds)
等待当前执行操作完成,并在提供的秒数后超时。 如果超时时执行未完成,则会抛出异常,但不会取消数据执行。
参数
名称 | 类型 | 说明 |
---|---|---|
timeout | Integer | 等待数据执行的时间(以秒为单位)。最长为 300 秒。 |
返回
Data
- 数据执行状态。
授权
使用此方法的脚本需要获得以下一个或多个范围的授权:
-
https://www.googleapis.com/auth/spreadsheets.currentonly
-
https://www.googleapis.com/auth/spreadsheets