Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
0191a337
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,发现更多精彩内容 >>
未验证
提交
0191a337
编写于
11月 25, 2022
作者:
O
openharmony_ci
提交者:
Gitee
11月 25, 2022
浏览文件
操作
浏览文件
下载
差异文件
!11783 [翻译完成】#I5UD6D
Merge pull request !11783 from Annie_wang/PR9873
上级
771ac90b
511c2ac8
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
525 addition
and
48 deletion
+525
-48
en/application-dev/reference/apis/js-apis-useriam-faceauth.md
...pplication-dev/reference/apis/js-apis-useriam-faceauth.md
+14
-23
en/application-dev/reference/apis/js-apis-useriam-userauth.md
...pplication-dev/reference/apis/js-apis-useriam-userauth.md
+511
-25
未找到文件。
en/application-dev/reference/apis/js-apis-useriam-faceauth.md
浏览文件 @
0191a337
...
...
@@ -37,45 +37,36 @@ A constructor used to create a **FaceAuthManager** object.
```
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
;
Sets an
[
XComponent surface ID
](
../arkui-ts/ts-basic-components-xcomponent.md#getxcomponentsurfaceid
)
for the face preview page in the face enrollment process.
**System capability**
: SystemCapability.UserIAM.UserAuth.FaceAuth
**Required permissions**
: ohos.permission.MANAGE_USER_IDM
**Parameters**
| Name | Type | Mandatory| Description |
| -------------- | ---------------------------------- | ---- | -------------------------- |
| surfaceId | string | Yes | ID of the surface held by the
[
XComponent
](
../arkui-ts/ts-basic-components-xcomponent.md#getxcomponentsurfaceid
)
.|
**Return value**
| Type | Description |
| ---------- | ------------------------------------------------------------ |
|
[
ResultCode
](
#resultcode
)
| Operation result code.|
**Example**
```
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 the surface ID successfully
"
);
}
catch
(
e
)
{
console
.
error
(
"
Failed to set the surface ID, error =
"
+
e
);
}
```
## ResultCode
Enumerates the operation result codes.
**System capability**
: SystemCapability.UserIAM.UserAuth.FaceAuth
| Name | Default Value| Description |
| ----------------------- | ------ | -------------------- |
| SUCCESS | 0 | The operation is successful. |
| FAIL | 1 | The operation fails. |
en/application-dev/reference/apis/js-apis-useriam-userauth.md
浏览文件 @
0191a337
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录