From 7894449d218599332fb3e0a926801d4c02b7ddb4 Mon Sep 17 00:00:00 2001 From: cc_ggboy Date: Tue, 29 Aug 2023 08:03:59 +0000 Subject: [PATCH] =?UTF-8?q?account=20ArkTs=E5=91=8A=E8=AD=A6=E6=95=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: cc_ggboy --- .../reference/apis/js-apis-appAccount.md | 14 ++++++-------- .../reference/apis/js-apis-osAccount.md | 8 ++++---- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-appAccount.md b/zh-cn/application-dev/reference/apis/js-apis-appAccount.md index ad0f798a0f..6835d4b597 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-appAccount.md +++ b/zh-cn/application-dev/reference/apis/js-apis-appAccount.md @@ -1509,7 +1509,7 @@ auth(name: string, owner: string, authType: string, options: {[key: string]: Obj } let options: Record = { - password: 'xxxx', + 'password': 'xxxx', }; try { appAccountManager.auth('LiSi', 'com.example.accountjsdemo', 'getSocialData', options, { @@ -4919,7 +4919,7 @@ onRequestRedirected: (request: Want) => void } auth(name: string, authType: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthCallback) { + options: Record, callback: account_appAccount.AuthCallback) { let result: account_appAccount.AuthResult = { account: { name: 'Lisi', @@ -5020,7 +5020,7 @@ onRequestRedirected: (request: Want) => void ```js class MyAuthenticator extends account_appAccount.Authenticator { addAccountImplicitly(authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { let want: Want = { bundleName: 'com.example.accountjsdemo', abilityName: 'com.example.accountjsdemo.LoginAbility', @@ -5029,7 +5029,7 @@ onRequestRedirected: (request: Want) => void } authenticate(name: string, authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { callback.onResult(account_appAccount.ResultCode.SUCCESS, { name: name, authType: authType, @@ -5192,11 +5192,9 @@ getRemoteObject(): rpc.RemoteObject; **示例:** ```js - import rpc from '@ohos.rpc'; - class MyAuthenticator extends account_appAccount.Authenticator { addAccountImplicitly(authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { let want: Want = { bundleName: 'com.example.accountjsdemo', abilityName: 'com.example.accountjsdemo.LoginAbility', @@ -5205,7 +5203,7 @@ getRemoteObject(): rpc.RemoteObject; } authenticate(name: string, authType: string, callerBundleName: string, - options: { [key: string]: Object }, callback: account_appAccount.AuthenticatorCallback) { + options: Record, callback: account_appAccount.AuthenticatorCallback) { callback.onResult(account_appAccount.ResultCode.SUCCESS, { name: name, authType: authType, diff --git a/zh-cn/application-dev/reference/apis/js-apis-osAccount.md b/zh-cn/application-dev/reference/apis/js-apis-osAccount.md index 8c399fbb2c..8ba2fe7fee 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-osAccount.md +++ b/zh-cn/application-dev/reference/apis/js-apis-osAccount.md @@ -5600,14 +5600,14 @@ getAccountInfo(options: GetDomainAccountInfoOptions, callback: AsyncCallback< | 错误码ID | 错误信息 | | -------- | --------------------------- | | 12300001 | System service exception. | -| 12300002 | Invalid domainAccountInfo. | +| 12300003 | Account not found. | | 12300013 | Network exception. | | 12300111 | Operation timeout. | **示例:** ```js import { BusinessError } from '@ohos.base'; - let domainAccountInfo: account_osAccount.DomainAccountInfo = { + let domainAccountInfo: account_osAccount.GetDomainAccountInfoOptions = { domain: 'CHINA', accountName: 'zhangsan' } @@ -5654,14 +5654,14 @@ getAccountInfo(options: GetDomainAccountInfoOptions): Promise<DomainAccountIn | 错误码ID | 错误信息 | | -------- | --------------------------- | | 12300001 | System service exception. | -| 12300002 | Invalid domainAccountInfo. | +| 12300003 | Account not found. | | 12300013 | Network exception. | | 12300111 | Operation timeout. | **示例:** ```js import { BusinessError } from '@ohos.base'; - let domainAccountInfo: account_osAccount.DomainAccountInfo = { + let domainAccountInfo: account_osAccount.GetDomainAccountInfoOptions = { domain: 'CHINA', accountName: 'zhangsan' } -- GitLab