Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
25185e0e
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看板
未验证
提交
25185e0e
编写于
10月 08, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 08, 2022
浏览文件
操作
浏览文件
下载
差异文件
!9873 更新userAuth和faceAuth的文档资料
Merge pull request !9873 from youliang_1314/master
上级
e32c25ab
ff308a39
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
499 addition
and
39 deletion
+499
-39
zh-cn/application-dev/reference/apis/js-apis-useriam-faceauth.md
...pplication-dev/reference/apis/js-apis-useriam-faceauth.md
+16
-15
zh-cn/application-dev/reference/apis/js-apis-useriam-userauth.md
...pplication-dev/reference/apis/js-apis-useriam-userauth.md
+483
-24
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-useriam-faceauth.md
浏览文件 @
25185e0e
...
...
@@ -37,36 +37,38 @@ constructor()
```
js
import
userIAM_faceAuth
from
'
@ohos.userIAM.faceAuth
'
;
let
faceAuthManager
=
new
userIAM_faceAuth
.
FaceAuthManager
()
let
faceAuthManager
=
new
userIAM_faceAuth
.
FaceAuthManager
()
;
```
### setSurfaceId
setSurfaceId(surfaceId: string):
ResultCode
;
setSurfaceId(surfaceId: string):
void
;
设置录入流程中人脸预览界面
[
XComponent
](
../arkui-ts/ts-basic-components-xcomponent.md#getxcomponentsurfaceid
)
持有 Surface 的 ID
, 返回值表示操作是否成功
。
设置录入流程中人脸预览界面
[
XComponent
](
../arkui-ts/ts-basic-components-xcomponent.md#getxcomponentsurfaceid
)
持有 Surface 的 ID。
**系统能力:**
SystemCapability.UserIAM.UserAuth.FaceAuth
**需要权限:**
ohos.permission.MANAGE_USER_IDM
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------------- | ---------------------------------- | ---- | -------------------------- |
| surfaceId | string | 是 |
[
XComponent
](
../arkui-ts/ts-basic-components-xcomponent.md#getxcomponentsurfaceid
)
持有 Surface 的 ID。 |
**返回值:**
| 类型 | 说明 |
| ---------- | ------------------------------------------------------------ |
|
[
ResultCode
](
#resultcode
)
| 表示操作是否成功 |
**示例:**
```
js
import
userIAM_faceAuth
from
'
@ohos.userIAM.faceAuth
'
;
let
faceAuthManager
=
new
userIAM_faceAuth
.
FaceAuthManager
()
faceAuthManager
.
setSurfaceId
(
"
0
"
);
import
faceAuth
from
'
@ohos.userIAM.faceAuth
'
;
let
surfaceId
=
"
123456
"
;
let
manager
=
new
faceAuth
.
FaceAuthManager
();
try
{
manager
.
setSurfaceId
(
surfaceId
);
console
.
info
(
"
set surface id success
"
);
}
catch
(
e
)
{
console
.
error
(
"
set surface id failed, error =
"
+
e
);
}
```
## ResultCode
...
...
@@ -77,5 +79,4 @@ setSurfaceId(surfaceId: string): ResultCode;
| 名称 | 默认值 | 描述 |
| ----------------------- | ------ | -------------------- |
| SUCCESS | 0 | 执行成功。 |
| FAIL | 1 | 执行失败。 |
| FAIL | 12700001 | 执行失败。 |
zh-cn/application-dev/reference/apis/js-apis-useriam-userauth.md
浏览文件 @
25185e0e
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录