Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
70fcbee4
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,发现更多精彩内容 >>
提交
70fcbee4
编写于
8月 26, 2022
作者:
J
jidong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify account demo code
Signed-off-by:
N
jidong
<
jidong4@huawei.com
>
上级
9e77f76d
变更
2
展开全部
显示空白变更内容
内联
并排
Showing
2 changed file
with
297 addition
and
401 deletion
+297
-401
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
+15
-13
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
+282
-388
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-appAccount.md
浏览文件 @
70fcbee4
...
...
@@ -899,7 +899,7 @@ getAllAccounts(owner: string, callback: AsyncCallback<Array<AppAccountInfo
**示例:**
```
js
const
appAccountManager
=
account
.
createAppAccountManager
();
const
appAccountManager
=
account
_appAccount
.
createAppAccountManager
();
const
selfBundle
=
"
com.example.actsgetallaaccounts
"
;
appAccountManager
.
getAllAccounts
(
selfBundle
,
(
err
,
data
)
=>
{
console
.
debug
(
"
getAllAccounts err:
"
+
JSON
.
stringify
(
err
));
...
...
@@ -960,7 +960,7 @@ on(type: 'change', owners: Array<string>, callback: Callback<Array<A
**示例:**
```
js
const
appAccountManager
=
account
.
createAppAccountManager
();
const
appAccountManager
=
account
_appAccount
.
createAppAccountManager
();
function
changeOnCallback
(
data
){
console
.
debug
(
"
receive change data:
"
+
JSON
.
stringify
(
data
));
}
...
...
@@ -990,7 +990,7 @@ off(type: 'change', callback?: Callback<Array\<AppAccountInfo>>): void
**示例:**
```
js
const
appAccountManager
=
account
.
createAppAccountManager
();
const
appAccountManager
=
account
_appAccount
.
createAppAccountManager
();
function
changeOnCallback
(
data
){
console
.
debug
(
"
receive change data:
"
+
JSON
.
stringify
(
data
));
appAccountManager
.
off
(
'
change
'
,
function
(){
...
...
@@ -1495,7 +1495,7 @@ getAuthenticatorCallback(sessionId: string, callback: AsyncCallback<Authentic
[
account_appAccount
.
Constants
.
KEY_OWNER
]:
"
com.example.ohos.accountjsdemo
"
,
[
account_appAccount
.
Constants
.
KEY_AUTH_TYPE
]:
"
getSocialData
"
,
[
account_appAccount
.
Constants
.
KEY_TOKEN
]:
"
xxxxxx
"
};
callback
.
O
nResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
callback
.
o
nResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
});
});
```
...
...
@@ -1531,7 +1531,7 @@ getAuthenticatorCallback(sessionId: string): Promise<AuthenticatorCallback>
[
account_appAccount
.
Constants
.
KEY_OWNER
]:
"
com.example.ohos.accountjsdemo
"
,
[
account_appAccount
.
Constants
.
KEY_AUTH_TYPE
]:
"
getSocialData
"
,
[
account_appAccount
.
Constants
.
KEY_TOKEN
]:
"
xxxxxx
"
};
callback
.
O
nResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
callback
.
o
nResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}).
catch
((
err
)
=>
{
console
.
log
(
"
getAuthenticatorCallback err:
"
+
JSON
.
stringify
(
err
));
});
...
...
@@ -1733,7 +1733,8 @@ checkAccountLabels(name: string, owner: string, labels: Array<string>, cal
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
checkAccountLabels
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
(
err
,
data
)
=>
{
var
labels
=
[
"
student
"
];
appAccountManager
.
checkAccountLabels
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
labels
,
(
err
,
data
)
=>
{
console
.
log
(
'
checkAccountLabels:
'
+
JSON
.
stringify
(
data
));
console
.
log
(
"
checkAccountLabels err:
"
+
JSON
.
stringify
(
err
));
});
...
...
@@ -1765,7 +1766,8 @@ checkAccountLabels(name: string, owner: string, labels: Array<string>): Pr
```
js
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
appAccountManager
.
checkAccountLabels
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
).
then
((
data
)
=>
{
var
labels
=
[
"
student
"
];
appAccountManager
.
checkAccountLabels
(
"
zhangsan
"
,
"
com.example.ohos.accountjsdemo
"
,
labels
).
then
((
data
)
=>
{
console
.
log
(
'
checkAccountLabels:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
err
)
=>
{
console
.
log
(
"
checkAccountLabels err:
"
+
JSON
.
stringify
(
err
));
...
...
@@ -2115,7 +2117,7 @@ onResult: (code: number, result: {[key: string]: any}) => void
[
account_appAccount
.
Constants
.
KEY_OWNER
]:
"
com.example.ohos.accountjsdemo
"
,
[
account_appAccount
.
Constants
.
KEY_AUTH_TYPE
]:
"
getSocialData
"
,
[
account_appAccount
.
Constants
.
KEY_TOKEN
]:
"
xxxxxx
"
};
callback
.
O
nResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
callback
.
o
nResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}).
catch
((
err
)
=>
{
console
.
log
(
"
getAuthenticatorCallback err:
"
+
JSON
.
stringify
(
err
));
});
...
...
@@ -2168,7 +2170,7 @@ onRequestContinued?: () => void
const
appAccountManager
=
account_appAccount
.
createAppAccountManager
();
var
sessionId
=
"
1234
"
;
appAccountManager
.
getAuthenticatorCallback
(
sessionId
).
then
((
callback
)
=>
{
callback
.
O
nRequestContinued
();
callback
.
o
nRequestContinued
();
}).
catch
((
err
)
=>
{
console
.
log
(
"
getAuthenticatorCallback err:
"
+
JSON
.
stringify
(
err
));
});
...
...
@@ -2295,7 +2297,7 @@ getRemoteObject(): rpc.RemoteObject;
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}
verifyCredential
(
name
:
string
,
options
:
VerifyCredentialOptions
,
callback
:
AuthenticatorC
allback
)
{
verifyCredential
(
name
,
options
,
c
allback
)
{
callback
.
onRequestRedirected
({
bundleName
:
"
com.example.ohos.accountjsdemo
"
,
abilityName
:
"
com.example.ohos.accountjsdemo.VerifyAbility
"
,
...
...
@@ -2305,11 +2307,11 @@ getRemoteObject(): rpc.RemoteObject;
});
}
setProperties
(
options
:
SetPropertiesOptions
,
callback
:
AuthenticatorC
allback
)
{
setProperties
(
options
,
c
allback
)
{
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
{});
}
checkAccountLabels
(
name
:
string
,
labels
:
Array
<
string
>
,
callback
:
AuthenticatorC
allback
)
{
checkAccountLabels
(
name
,
labels
,
c
allback
)
{
var
result
=
{[
account_appAccount
.
Constants
.
KEY_BOOLEAN_RESULT
]:
false
};
callback
.
onResult
(
account_appAccount
.
ResultCode
.
SUCCESS
,
result
);
}
...
...
zh-cn/application-dev/reference/apis/js-apis-osAccount.md
浏览文件 @
70fcbee4
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录