Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
29f10a79
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
29f10a79
编写于
9月 08, 2022
作者:
O
openharmony_ci
提交者:
Gitee
9月 08, 2022
浏览文件
操作
浏览文件
下载
差异文件
!9254 修改接口信息错误
Merge pull request !9254 from sunyaozu/master
上级
6c655005
cad5c69c
变更
2
展开全部
显示空白变更内容
内联
并排
Showing
2 changed file
with
514 addition
and
101 deletion
+514
-101
zh-cn/application-dev/reference/apis/js-apis-i18n.md
zh-cn/application-dev/reference/apis/js-apis-i18n.md
+479
-92
zh-cn/application-dev/reference/apis/js-apis-intl.md
zh-cn/application-dev/reference/apis/js-apis-intl.md
+35
-9
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-i18n.md
浏览文件 @
29f10a79
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-intl.md
浏览文件 @
29f10a79
...
...
@@ -60,6 +60,7 @@ constructor(locale: string, options?: LocaleOptions)
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------- | ---- | ---------------------------- |
| locale | string | 是 | 包含区域设置信息的字符串,包括语言以及可选的脚本和区域。 |
...
...
@@ -80,6 +81,7 @@ toString(): string
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ------ | ----------- |
| string | 字符串形式的区域信息。 |
...
...
@@ -100,6 +102,7 @@ maximize(): Locale
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ----------------- | ---------- |
|
[
Locale
](
#locale
)
| 最大化后的区域对象。 |
...
...
@@ -120,6 +123,7 @@ minimize(): Locale
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ----------------- | ---------- |
|
[
Locale
](
#locale
)
| 最小化后的区域对象。 |
...
...
@@ -131,7 +135,7 @@ minimize(): Locale
```
## LocaleOptions
## LocaleOptions
<sup>9+</sup>
表示区域初始化选项。
...
...
@@ -173,6 +177,7 @@ constructor(locale: string | Array<string>, options?: DateTimeOptions)
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ----------------------------------- | ---- | ---------------------------- |
| locale | string
\|
Array
<
string
>
| 是 | 包含区域设置信息的字符串,包括语言以及可选的脚本和区域。 |
...
...
@@ -199,11 +204,13 @@ format(date: Date): string
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---- | ---- | ---- | ------- |
| date | Date | 是 | 时间日期对象。 |
**返回值:**
| 类型 | 说明 |
| ------ | ------------ |
| string | 格式化后的时间日期字符串 |
...
...
@@ -225,12 +232,14 @@ formatRange(startDate: Date, endDate: Date): string
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| --------- | ---- | ---- | -------- |
| startDate | Date | 是 | 起始的时间日期。 |
| endDate | Date | 是 | 结束的时间日期。 |
**返回值:**
| 类型 | 说明 |
| ------ | -------------- |
| string | 格式化后的时间日期段字符串。 |
...
...
@@ -253,6 +262,7 @@ resolvedOptions(): DateTimeOptions
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ----------------------------------- | ----------------------------- |
|
[
DateTimeOptions
](
#datetimeoptions
)
| DateTimeFormat
对象的格式化选项。 |
...
...
@@ -264,7 +274,7 @@ resolvedOptions(): DateTimeOptions
```
## DateTimeOptions
## DateTimeOptions
<sup>9+</sup>
表示时间日期格式化选项。
...
...
@@ -318,7 +328,8 @@ constructor(locale: string | Array<string>, options?: NumberOptions)
**系统能力**
:SystemCapability.Global.I18n
参数:
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ---------------------------- |
| locale | string
\|
Array
<
string
>
| 是 | 包含区域设置信息的字符串,包括语言以及可选的脚本和区域。 |
...
...
@@ -339,11 +350,13 @@ format(number: number): string;
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ---- |
| number | number | 是 | 数字对象 |
**返回值:**
| 类型 | 说明 |
| ------ | ---------- |
| string | 格式化后的数字字符串 |
...
...
@@ -365,6 +378,7 @@ resolvedOptions(): NumberOptions
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ------------------------------- | --------------------------- |
|
[
NumberOptions
](
#numberoptions
)
| NumberFormat
对象的格式化选项。 |
...
...
@@ -377,7 +391,7 @@ resolvedOptions(): NumberOptions
```
## NumberOptions
## NumberOptions
<sup>9+</sup>
表示设备支持的能力。
...
...
@@ -453,12 +467,14 @@ compare(first: string, second: string): number
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------------ |
| first | string | 是 | 进行比较第一个字符串。 |
| second | string | 是 | 进行比较的第二个字符串。 |
**返回值:**
| 类型 | 说明 |
| ------ | ---------------------------------------- |
| number | 比较结果。当number为负数,表示first排序在second之前;当number为0,表示first与second排序相同;当number为正数,表示first排序在second之后。 |
...
...
@@ -479,6 +495,7 @@ resolvedOptions(): CollatorOptions
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ----------------------------------- | ----------------- |
|
[
CollatorOptions
](
#collatoroptions
)
| 返回的Collator对象的属性。 |
...
...
@@ -490,7 +507,7 @@ resolvedOptions(): CollatorOptions
```
## CollatorOptions<sup>
8
+</sup>
## CollatorOptions<sup>
9
+</sup>
表示Collator可设置的属性。
...
...
@@ -532,7 +549,8 @@ constructor(locale: string | Array<string>, options?: PluralRulesOptions)
**系统能力**
:SystemCapability.Global.I18n
参数:
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ---------------------------------------- | ---- | ---------------------------- |
| locale | string
\|
Array
<
string
>
| 是 | 包含区域设置信息的字符串,包括语言以及可选的脚本和区域。 |
...
...
@@ -553,11 +571,13 @@ select(n: number): string
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---- | ------ | ---- | ------------ |
| n | number | 是 | 待获取单复数类别的数字。 |
**返回值:**
| 类型 | 说明 |
| ------ | ---------------------------------------- |
| string | 单复数类别,取值包括:"zero","one","two",
"few",
"many",
"others"。 |
...
...
@@ -569,7 +589,7 @@ select(n: number): string
```
## PluralRulesOptions<sup>
8
+</sup>
## PluralRulesOptions<sup>
9
+</sup>
表示PluralRules对象可设置的属性。
...
...
@@ -611,7 +631,8 @@ constructor(locale: string | Array<string>, options?: RelativeTimeFormatIn
**系统能力**
:SystemCapability.Global.I18n
参数:
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ---------------------------------------- | ---- | ---------------------------- |
| locale | string
\|
Array
<
string
>
| 是 | 包含区域设置信息的字符串,包括语言以及可选的脚本和区域。 |
...
...
@@ -632,12 +653,14 @@ format(value: number, unit: string): string
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ------ | ---- | ---------------------------------------- |
| value | number | 是 | 相对时间格式化的数值。 |
| unit | string | 是 | 相对时间格式化的单位,取值包括:"year",
"quarter",
"month",
"week",
"day",
"hour",
"minute",
"second"。 |
**返回值:**
| 类型 | 说明 |
| ------ | ---------- |
| string | 格式化后的相对时间。 |
...
...
@@ -658,12 +681,14 @@ formatToParts(value: number, unit: string): Array<object>
**系统能力**
:SystemCapability.Global.I18n
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ----- | ------ | ---- | ---------------------------------------- |
| value | number | 是 | 相对时间格式化的数值。 |
| unit | string | 是 | 相对时间格式化的单位,取值包括:"year",
"quarter",
"month",
"week",
"day",
"hour",
"minute",
"second"。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | --------------------------- |
| Array
<
object
>
| 返回可用于自定义区域设置格式的相对时间格式的对象数组。 |
...
...
@@ -684,6 +709,7 @@ resolvedOptions(): RelativeTimeFormatResolvedOptions
**系统能力**
:SystemCapability.Global.I18n
**返回值:**
| 类型 | 说明 |
| ---------------------------------------- | --------------------------------- |
|
[
RelativeTimeFormatResolvedOptions
](
#relativetimeformatresolvedoptions
)
| RelativeTimeFormat
对象的格式化选项。 |
...
...
@@ -695,7 +721,7 @@ resolvedOptions(): RelativeTimeFormatResolvedOptions
```
## RelativeTimeFormatInputOptions<sup>
8
+</sup>
## RelativeTimeFormatInputOptions<sup>
9
+</sup>
表示RelativeTimeFormat对象可设置的属性。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录