Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
6f4b296b
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
6f4b296b
编写于
9月 09, 2022
作者:
O
openharmony_ci
提交者:
Gitee
9月 09, 2022
浏览文件
操作
浏览文件
下载
差异文件
!9345 空行修改
Merge pull request !9345 from zengyawen/master
上级
ce598c95
0ddffc0f
变更
8
展开全部
隐藏空白更改
内联
并排
Showing
8 changed file
with
265 addition
and
20 deletion
+265
-20
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
+8
-0
zh-cn/application-dev/reference/apis/js-apis-contact.md
zh-cn/application-dev/reference/apis/js-apis-contact.md
+52
-0
zh-cn/application-dev/reference/apis/js-apis-distributed-account.md
...ication-dev/reference/apis/js-apis-distributed-account.md
+17
-11
zh-cn/application-dev/reference/apis/js-apis-hidebug.md
zh-cn/application-dev/reference/apis/js-apis-hidebug.md
+7
-8
zh-cn/application-dev/reference/apis/js-apis-hitracechain.md
zh-cn/application-dev/reference/apis/js-apis-hitracechain.md
+1
-0
zh-cn/application-dev/reference/apis/js-apis-net-connection.md
.../application-dev/reference/apis/js-apis-net-connection.md
+6
-0
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
+1
-0
zh-cn/application-dev/reference/apis/js-apis-util.md
zh-cn/application-dev/reference/apis/js-apis-util.md
+173
-1
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
浏览文件 @
6f4b296b
...
...
@@ -2104,6 +2104,7 @@ onResult: (code: number, result: {[key: string]: any}) => void
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------ | -------------------- | ---- | ------ |
| code | number | 是 | 鉴权结果码。 |
...
...
@@ -2134,6 +2135,7 @@ onRequestRedirected: (request: Want) => void
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ---- | ---- | ---------- |
| request | Want | 是 | 用于跳转的请求信息。 |
...
...
@@ -2191,6 +2193,7 @@ addAccountImplicitly(authType: string, callerBundleName: string, options: {[key:
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ---------------- | --------------------- | ---- | --------------- |
| authType | string | 是 | 应用帐号的鉴权类型。 |
...
...
@@ -2207,6 +2210,7 @@ authenticate(name: string, authType: string, callerBundleName: string, options:
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| ---------------- | --------------------- | ---- | --------------- |
| name | string | 是 | 应用帐号的名称。 |
...
...
@@ -2224,6 +2228,7 @@ verifyCredential(name: string, options: VerifyCredentialOptions, callback: Authe
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| ---------------- | --------------------- | ---- | --------------- |
| name | string | 是 | 应用帐号的名称。 |
...
...
@@ -2239,6 +2244,7 @@ setProperties(options: SetPropertiesOptions, callback: AuthenticatorCallback): v
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| ---------------- | --------------------- | ---- | --------------- |
| options |
[
SetPropertiesOptions
](
#setpropertiesoptions9
)
| 是 | 设置属性的可选项。 |
...
...
@@ -2253,6 +2259,7 @@ checkAccountLabels(name: string, labels: Array<string>, callback: Authenti
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| ---------------- | --------------------- | ---- | --------------- |
| name | string | 是 | 应用帐号的名称。 |
...
...
@@ -2268,6 +2275,7 @@ isAccountRemovable(name: string, callback: AuthenticatorCallback): void;
**系统能力:**
SystemCapability.Account.AppAccount
**参数:**
| 接口名 | 类型 | 必填 | 说明 |
| ---------------- | --------------------- | ---- | --------------- |
| name | string | 是 | 应用帐号的名称。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-contact.md
浏览文件 @
6f4b296b
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-distributed-account.md
浏览文件 @
6f4b296b
...
...
@@ -21,12 +21,13 @@ getDistributedAccountAbility(): DistributedAccountAbility
**系统能力:**
SystemCapability.Account.OsAccount
-
返回值:
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
|
[
DistributedAccountAbility
](
#distributedaccountability
)
| 返回一个实例,实例提供查询和更新分布式帐号登录状态方法。 |
-
示例:
**示例:**
```
js
const
accountAbility
=
account_distributedAccount
.
getDistributedAccountAbility
();
```
...
...
@@ -45,12 +46,13 @@ queryOsAccountDistributedInfo(callback: AsyncCallback<DistributedInfo>): v
**需要权限:**
ohos.permission.MANAGE_LOCAL_ACCOUNTS 或 ohos.permission.DISTRIBUTED_DATASYNC。
-
参数:
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
<
[DistributedInfo](#distributedinfo)
>
| 是 | 获取分布式帐号信息的回调。 |
-
示例:
**示例:**
```
js
const
accountAbility
=
account_distributedAccount
.
getDistributedAccountAbility
();
accountAbility
.
queryOsAccountDistributedInfo
((
err
,
data
)
=>
{
...
...
@@ -70,12 +72,13 @@ queryOsAccountDistributedInfo(): Promise<DistributedInfo>
**需要权限:**
ohos.permission.MANAGE_LOCAL_ACCOUNTS 或 ohos.permission.DISTRIBUTED_DATASYNC。
-
返回值:
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
[DistributedInfo](#distributedinfo)
>
| Promise实例,用于获取异步返回结果。 |
-
示例:
**示例:**
```
js
const
accountAbility
=
account_distributedAccount
.
getDistributedAccountAbility
();
accountAbility
.
queryOsAccountDistributedInfo
().
then
((
data
)
=>
{
...
...
@@ -96,13 +99,14 @@ updateOsAccountDistributedInfo(accountInfo: DistributedInfo, callback: AsyncCall
**需要权限:**
ohos.permission.MANAGE_LOCAL_ACCOUNTS。
-
参数:
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| accountInfo |
[
DistributedInfo
](
#distributedinfo
)
| 是 | 分布式帐号信息。 |
| callback | AsyncCallback
<
void
>
| 是 | 更新分布式帐号信息的回调。 |
-
示例:
**示例:**
```
js
const
accountAbility
=
account_distributedAccount
.
getDistributedAccountAbility
();
let
accountInfo
=
{
id
:
'
12345
'
,
name
:
'
ZhangSan
'
,
event
:
'
Ohos.account.event.LOGIN
'
};
...
...
@@ -121,17 +125,19 @@ updateOsAccountDistributedInfo(accountInfo: DistributedInfo): Promise<void>
**需要权限:**
ohos.permission.MANAGE_LOCAL_ACCOUNTS。
-
参数:
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| accountInfo |
[
DistributedInfo
](
#distributedinfo
)
| 是 | 分布式帐户信息。 |
-
返回值:
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
void
>
| Promise实例,用于获取异步返回结果。 |
-
示例:
**示例:**
```
js
const
accountAbility
=
account_distributedAccount
.
getDistributedAccountAbility
();
let
accountInfo
=
{
id
:
'
12345
'
,
name
:
'
ZhangSan
'
,
event
:
'
Ohos.account.event.LOGIN
'
};
...
...
zh-cn/application-dev/reference/apis/js-apis-hidebug.md
浏览文件 @
6f4b296b
...
...
@@ -45,8 +45,8 @@ getNativeHeapAllocatedSize(): bigint
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**返回值:**
| 类型 | 说明 |
| ------ | --------------------------------- |
| bigint | 返回native heap内存的已分配内存,单位为kB。 |
...
...
@@ -68,13 +68,12 @@ getNativeHeapFreeSize(): bigint
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**返回值:**
| 类型 | 说明 |
| ------ | ------------------------------- |
| bigint | 返回native heap内存的空闲内存,单位为kB。 |
**示例:**
```
js
let
nativeHeapFreeSize
=
hidebug
.
getNativeHeapFreeSize
();
...
...
@@ -89,13 +88,12 @@ getPss(): bigint
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**返回值:**
| 类型 | 说明 |
| ------ | ------------------------- |
| bigint | 返回应用进程PSS内存大小,单位为kB。 |
**示例:**
```
js
let
pss
=
hidebug
.
getPss
();
...
...
@@ -110,8 +108,8 @@ getSharedDirty(): bigint
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**返回值:**
| 类型 | 说明 |
| ------ | -------------------------- |
| bigint | 返回进程的共享脏内存大小,单位为kB。 |
...
...
@@ -130,8 +128,8 @@ getPrivateDirty(): bigint
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**返回值:**
| 类型 | 说明 |
| ------ | -------------------------- |
| bigint | 返回进程的私有脏内存大小,单位为kB。 |
...
...
@@ -152,8 +150,8 @@ getCpuUsage(): number
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**返回值:**
| 类型 | 说明 |
| ------ | -------------------------- |
| number | 获取进程的cpu占用率。 |
...
...
@@ -245,6 +243,7 @@ getServiceDump(serviceid : number) : string
| serviceid | number | 是 | 基于该用户输入的service id获取系统服务信息。|
**返回值:**
| 类型 | 说明 |
| ------ | -------------------------- |
| string | 返回dump的service信息文件的绝对路径。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-hitracechain.md
浏览文件 @
6f4b296b
...
...
@@ -291,6 +291,7 @@ enableFlag(id: HiTraceId, flag: HiTraceFlag): void
**系统能力:**
SystemCapability.HiviewDFX.HiTrace
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| id |
[
HiTraceId
](
#hitraceid
)
| 是 | 需要置位指定跟踪标志的HiTraceId实例。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-net-connection.md
浏览文件 @
6f4b296b
...
...
@@ -117,6 +117,7 @@ getAllNets(callback: AsyncCallback<Array<NetHandle>>): void
**系统能力**
:SystemCapability.Communication.NetManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callback | AsyncCallback
<
Array
<
[NetHandle](#nethandle)
>>
| 是 | 回调函数。 |
...
...
@@ -142,6 +143,7 @@ getAllNets(): Promise<Array<NetHandle>>
**系统能力**
:SystemCapability.Communication.NetManager.Core
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| Promise
<
Array
<
[NetHandle](#nethandle)
>>
| 以Promise形式返回激活的数据网络列表。 |
...
...
@@ -285,6 +287,7 @@ reportNetConnected(netHandle: NetHandle, callback: AsyncCallback<void>): v
**系统能力**
:SystemCapability.Communication.NetManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle |
[
NetHandle
](
#nethandle
)
| 是 | 数据网络的句柄,参考
[
NetHandle
](
#nethandle
)
。 |
...
...
@@ -312,6 +315,7 @@ reportNetConnected(netHandle: NetHandle): Promise<void>
**系统能力**
:SystemCapability.Communication.NetManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle |
[
NetHandle
](
#nethandle
)
| 是 | 数据网络的句柄,参考
[
NetHandle
](
#nethandle
)
。 |
...
...
@@ -343,6 +347,7 @@ reportNetDisconnected(netHandle: NetHandle, callback: AsyncCallback<void>)
**系统能力**
:SystemCapability.Communication.NetManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle |
[
NetHandle
](
#nethandle
)
| 是 | 数据网络的句柄,参考
[
NetHandle
](
#nethandle
)
。 |
...
...
@@ -370,6 +375,7 @@ reportNetDisconnected(netHandle: NetHandle): Promise<void>
**系统能力**
:SystemCapability.Communication.NetManager.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| netHandle |
[
NetHandle
](
#nethandle
)
| 是 | 数据网络的句柄,参考
[
NetHandle
](
#nethandle
)
。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
浏览文件 @
6f4b296b
...
...
@@ -21,6 +21,7 @@ getAccountManager(): AccountManager
**系统能力:**
SystemCapability.Account.OsAccount
**返回值:**
| 类型 | 说明 |
| --------------------------------- | ------------------------ |
|
[
AccountManager
](
#accountmanager
)
| 获取系统帐号能力的实例。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-util.md
浏览文件 @
6f4b296b
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录