Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
74533695
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看板
提交
74533695
编写于
12月 28, 2021
作者:
Z
zhaoyuan17
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update js-apis-appAccount.md
Signed-off-by:
N
zhaoyuan17
<
zhaoyuan17@huawei.com
>
上级
c87b5eb8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
24 deletion
+24
-24
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
+24
-24
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
浏览文件 @
74533695
...
...
@@ -57,7 +57,7 @@ addAccount(name: string, callback: AsyncCallback<void>): void;
### addAccount
addAccount(name: string, extraInfo: string, callback: AsyncCallback
<
void
>
): void
addAccount(name: string, extraInfo: string, callback: AsyncCallback
<
void
>
): void
;
将此应用程序的帐号名和额外信息添加到帐号管理服务中,使用callback回调异步返回结果。
...
...
@@ -84,7 +84,7 @@ addAccount(name: string, extraInfo: string, callback: AsyncCallback<void>)
### addAccount
addAccount(name: string, extraInfo?: string): Promise
<
void
>
addAccount(name: string, extraInfo?: string): Promise
<
void
>
;
将此应用的帐号名或额外信息添加到帐号管理服务中,使用Promise方式异步返回结果。
...
...
@@ -116,7 +116,7 @@ addAccount(name: string, extraInfo?: string): Promise<void>
### deleteAccount
deleteAccount(name: string, callback: AsyncCallback
<
void
>
): void
deleteAccount(name: string, callback: AsyncCallback
<
void
>
): void
;
从帐号管理服务中删除应用帐号,使用callback回调异步返回结果。
...
...
@@ -138,7 +138,7 @@ deleteAccount(name: string, callback: AsyncCallback<void>): void
### deleteAccount
deleteAccount(name: string): Promise
<
void
>
deleteAccount(name: string): Promise
<
void
>
;
从帐号管理服务中删除应用帐号,使用Promise方式异步返回结果。
...
...
@@ -167,7 +167,7 @@ deleteAccount(name: string): Promise<void>
### disableAppAccess
disableAppAccess(name: string, bundleName: string, callback: AsyncCallback
<
void
>
): void
disableAppAccess(name: string, bundleName: string, callback: AsyncCallback
<
void
>
): void
;
禁止指定第三方应用帐户的名称访问指定包名称的第三方应用,使用callback回调异步返回结果。
...
...
@@ -190,7 +190,7 @@ disableAppAccess(name: string, bundleName: string, callback: AsyncCallback<vo
### disableAppAccess
disableAppAccess(name: string, bundleName: string): Promise
<
void
>
disableAppAccess(name: string, bundleName: string): Promise
<
void
>
;
禁止指定第三方应用帐户的名称访问指定包名称的第三方应用,使用Promise方式异步返回结果。
...
...
@@ -220,7 +220,7 @@ disableAppAccess(name: string, bundleName: string): Promise<void>
### enableAppAccess
enableAppAccess(name: string, bundleName: string, callback: AsyncCallback
<
void
>
): void
enableAppAccess(name: string, bundleName: string, callback: AsyncCallback
<
void
>
): void
;
允许指定第三方应用帐户的名称访问指定包名称的第三方应用,使用callback回调异步返回结果。
...
...
@@ -243,7 +243,7 @@ enableAppAccess(name: string, bundleName: string, callback: AsyncCallback<voi
### enableAppAccess
enableAppAccess(name: string, bundleName: string): Promise
<
void
>
enableAppAccess(name: string, bundleName: string): Promise
<
void
>
;
允许指定第三方应用帐户的名称访问指定包名称的第三方应用,使用Promise方式异步返回结果。
...
...
@@ -272,7 +272,7 @@ enableAppAccess(name: string, bundleName: string): Promise<void>
### checkAppAccountSyncEnable
checkAppAccountSyncEnable(name: string, callback: AsyncCallback
<
boolean
>
): void
checkAppAccountSyncEnable(name: string, callback: AsyncCallback
<
boolean
>
): void
;
检查指定应用帐号是否允许应用数据同步,使用callback回调异步返回结果。
...
...
@@ -295,7 +295,7 @@ checkAppAccountSyncEnable(name: string, callback: AsyncCallback<boolean>):
### checkAppAccountSyncEnable
checkAppAccountSyncEnable(name: string): Promise
<
boolean
>
checkAppAccountSyncEnable(name: string): Promise
<
boolean
>
;
检查指定应用帐号是否允许应用数据同步,使用Promise方式异步返回结果。
...
...
@@ -324,7 +324,7 @@ checkAppAccountSyncEnable(name: string): Promise<boolean>
### setAccountCredential
setAccountCredential(name: string, credentialType: string, credential: string,callback: AsyncCallback
<
void
>
): void
setAccountCredential(name: string, credentialType: string, credential: string,callback: AsyncCallback
<
void
>
): void
;
设置此应用程序帐号的凭据,使用callback回调异步返回结果。
...
...
@@ -348,7 +348,7 @@ setAccountCredential(name: string, credentialType: string, credential: string,ca
### setAccountCredential
setAccountCredential(name: string, credentialType: string, credential: string): Promise
<
void
>
setAccountCredential(name: string, credentialType: string, credential: string): Promise
<
void
>
;
设置此应用程序帐号的凭据,使用Promise方式异步返回结果。
...
...
@@ -379,7 +379,7 @@ setAccountCredential(name: string, credentialType: string, credential: string):
### setAccountExtraInfo
setAccountExtraInfo(name: string, extraInfo: string, callback: AsyncCallback
<
void
>
): void
setAccountExtraInfo(name: string, extraInfo: string, callback: AsyncCallback
<
void
>
): void
;
设置此应用程序帐号的额外信息,使用callback回调异步返回结果。
...
...
@@ -402,7 +402,7 @@ setAccountExtraInfo(name: string, extraInfo: string, callback: AsyncCallback<
### setAccountExtraInfo
setAccountExtraInfo(name: string, extraInfo: string): Promise
<
void
>
setAccountExtraInfo(name: string, extraInfo: string): Promise
<
void
>
;
设置此应用程序帐号的额外信息,使用Promise方式异步返回结果。
...
...
@@ -432,7 +432,7 @@ setAccountExtraInfo(name: string, extraInfo: string): Promise<void>
### setAppAccountSyncEnable
setAppAccountSyncEnable(name: string, isEnable: boolean, callback: AsyncCallback
<
void
>
): void
setAppAccountSyncEnable(name: string, isEnable: boolean, callback: AsyncCallback
<
void
>
): void
;
设置指定的应用程序帐号是否允许应用程序数据同步,使用callback回调异步返回结果。
...
...
@@ -455,7 +455,7 @@ setAppAccountSyncEnable(name: string, isEnable: boolean, callback: AsyncCallback
### setAppAccountSyncEnable
setAppAccountSyncEnable(name: string, isEnable: boolean): Promise
<
void
>
setAppAccountSyncEnable(name: string, isEnable: boolean): Promise
<
void
>
;
设置指定的应用程序帐号是否允许应用程序数据同步,使用Promise方式异步返回结果。
...
...
@@ -485,7 +485,7 @@ setAppAccountSyncEnable(name: string, isEnable: boolean): Promise<void>
### setAssociatedData
setAssociatedData(name: string, key: string, value: string, callback: AsyncCallback
<
void
>
): void
setAssociatedData(name: string, key: string, value: string, callback: AsyncCallback
<
void
>
): void
;
设置与此应用程序帐号关联的数据,使用callback回调异步返回结果。
...
...
@@ -508,7 +508,7 @@ setAssociatedData(name: string, key: string, value: string, callback: AsyncCallb
### setAssociatedData
setAssociatedData(name: string, key: string, value: string): Promise
<
void
>
setAssociatedData(name: string, key: string, value: string): Promise
<
void
>
;
设置与此应用程序帐号关联的数据,使用Promise方式异步返回结果。
...
...
@@ -539,7 +539,7 @@ setAssociatedData(name: string, key: string, value: string): Promise<void>
### getAccountCredential
getAccountCredential(name: string, credentialType: string, callback: AsyncCallback
<
string
>
): void
getAccountCredential(name: string, credentialType: string, callback: AsyncCallback
<
string
>
): void
;
获取此应用帐号的凭据,使用callback回调异步返回结果。
...
...
@@ -563,7 +563,7 @@ getAccountCredential(name: string, credentialType: string, callback: AsyncCallba
### getAccountCredential
getAccountCredential(name: string, credentialType: string): Promise
<
string
>
getAccountCredential(name: string, credentialType: string): Promise
<
string
>
;
获取此应用程序帐号的凭据,使用Promise方式异步返回结果。
...
...
@@ -593,7 +593,7 @@ getAccountCredential(name: string, credentialType: string): Promise<string>
### getAccountExtraInfo
getAccountExtraInfo(name: string, callback: AsyncCallback
<
string
>
): void
getAccountExtraInfo(name: string, callback: AsyncCallback
<
string
>
): void
;
获取此应用帐号的额外信息,使用callback回调异步返回结果。
...
...
@@ -616,7 +616,7 @@ getAccountExtraInfo(name: string, callback: AsyncCallback<string>): void
### getAccountExtraInfo
getAccountExtraInfo(name: string): Promise
<
string
>
getAccountExtraInfo(name: string): Promise
<
string
>
;
获取此应用程序帐号的额外信息,使用Promise方式异步返回结果。
...
...
@@ -645,7 +645,7 @@ getAccountExtraInfo(name: string): Promise<string>
### getAssociatedData
getAssociatedData(name: string, key: string, callback: AsyncCallback
<
string
>
): void
getAssociatedData(name: string, key: string, callback: AsyncCallback
<
string
>
): void
;
获取与此应用程序帐号关联的数据,使用callback回调异步返回结果。
...
...
@@ -669,7 +669,7 @@ getAssociatedData(name: string, key: string, callback: AsyncCallback<string&g
### getAssociatedData
getAssociatedData(name: string, key: string): Promise
<
string
>
getAssociatedData(name: string, key: string): Promise
<
string
>
;
获取与此应用程序帐号关联的数据,使用Promise方式异步返回结果。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录