From cfcc6bf59fec77e4520db969dd28cdc0fc1bb144 Mon Sep 17 00:00:00 2001 From: lihuihui Date: Wed, 15 Feb 2023 11:17:12 +0800 Subject: [PATCH] fixed 454c398 from https://gitee.com/li-hui-17/docs/pulls/14708 int64 Signed-off-by: lihuihui --- .../reference/apis/js-apis-data-relationalStore.md | 6 +++--- .../reference/apis/js-apis-data-resultset.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md b/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md index 534ac2eb81..bb8dd19192 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-relationalStore.md @@ -2917,9 +2917,9 @@ getLong(columnIndex: number): number **返回值:** -| 类型 | 说明 | -| ------ | -------------------------- | -| number | 以Long形式返回指定列的值。 | +| 类型 | 说明 | +| ------ | ------------------------------------------------------------ | +| number | 以Long形式返回指定列的值。
该接口支持的数据范围是:Number.MIN_SAFE_INTEGER ~ Number.MAX_SAFE_INTEGER,若超出该范围,建议使用[getDouble](#getdouble)。 | **错误码:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md b/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md index f56b27d999..be7540c087 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md +++ b/zh-cn/application-dev/reference/apis/js-apis-data-resultset.md @@ -873,9 +873,9 @@ getLong(columnIndex: number): number **返回值:** - | 类型 | 说明 | - | -------- | -------- | - | number | 以Long形式返回指定列的值。 | +| 类型 | 说明 | +| -------- | -------- | +| number | 以Long形式返回指定列的值。
该接口支持的数据范围是:Number.MIN_SAFE_INTEGER ~ Number.MAX_SAFE_INTEGER,若超出该范围,建议使用[getDouble](#getdouble)。 | **示例:** -- GitLab