From 454c39885775ef0db4d0ecff0f7dbfa5857357ac Mon Sep 17 00:00:00 2001 From: lihuihui Date: Wed, 15 Feb 2023 11:17:12 +0800 Subject: [PATCH] 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 c94780f465..4c94720c13 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 @@ -3083,9 +3083,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 a556ae2da7..01f92571bd 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 @@ -343,9 +343,9 @@ getLong(columnIndex: number): number **返回值:** - | 类型 | 说明 | - | -------- | -------- | - | number | 以Long形式返回指定列的值。 | +| 类型 | 说明 | +| -------- | -------- | +| number | 以Long形式返回指定列的值。
该接口支持的数据范围是:Number.MIN_SAFE_INTEGER ~ Number.MAX_SAFE_INTEGER,若超出该范围,建议使用[getDouble](#getdouble)。 | **示例:** -- GitLab