From 2848ae746dda6a3e63533dc2cda0d1d735b41c42 Mon Sep 17 00:00:00 2001 From: maosiping Date: Mon, 7 Mar 2022 20:08:09 +0800 Subject: [PATCH] =?UTF-8?q?SIM=E5=8D=A1=E7=AE=A1=E7=90=86=E8=B5=84?= =?UTF-8?q?=E6=96=99=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: maosiping --- .../reference/apis/js-apis-sim.md | 56 ------------------- 1 file changed, 56 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-sim.md b/zh-cn/application-dev/reference/apis/js-apis-sim.md index 4315d2ecd6..4adc8b442a 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-sim.md +++ b/zh-cn/application-dev/reference/apis/js-apis-sim.md @@ -111,62 +111,6 @@ promise.then(data => { ``` -## sim.hasOperatorPrivileges - -hasOperatorPrivileges\(slotId: number, callback: AsyncCallback\): void - -检查应用是否已经被赋予权限,使用callback方式作为异步方法。 - -**需要权限**:ohos.permission.GET_TELEPHONY_STATE - -**参数:** - -| 参数名 | 类型 | 必填 | 说明 | -| -------- | --------------------------- | ---- | -------------------------------------- | -| slotId | number | 是 | 卡槽ID。
- 0:卡槽1
- 1:卡槽2 | -| callback | AsyncCallback<boolean> | 是 | 回调函数。 | - -**示例:** - -``` -sim.hasOperatorPrivileges(0, (err, data) => { - console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`); -}); -``` - - -## sim.hasOperatorPrivileges - -hasOperatorPrivileges\(slotId: number\): Promise - -检查应用是否已经被赋予权限,使用Promise方式作为异步方法。 - -**需要权限**:ohos.permission.GET_TELEPHONY_STATE - -**参数:** - -| 参数名 | 类型 | 必填 | 说明 | -| ------ | ------ | ---- | -------------------------------------- | -| slotId | number | 是 | 卡槽ID。
- 0:卡槽1
- 1:卡槽2 | - -**返回值:** - -| 类型 | 说明 | -| --------------------- | ---------------------------------- | -| Promise<boolean> | 以Promise形式返回指应用是否操作电话服务的权限,如果有返回true。 | - -**示例:** - -``` -let promise = sim.hasOperatorPrivileges(0); -promise.then(data => { - console.log(`hasOperatorPrivileges success, promise: data->${JSON.stringify(data)}`); -}).catch(err => { - console.log(`hasOperatorPrivileges fail, promise: err->${JSON.stringify(err)}`); -}); -``` - - ## sim.getISOCountryCodeForSim getISOCountryCodeForSim\(slotId: number, callback: AsyncCallback\): void -- GitLab