From cae8b7ed7576dec659d6eb80f583856114611258 Mon Sep 17 00:00:00 2001 From: dingxiaochen Date: Tue, 27 Sep 2022 17:30:40 +0800 Subject: [PATCH] fix readme. Signed-off-by: dingxiaochen --- .../reference/apis/js-apis-radio.md | 20 +++++++++++++++++ .../reference/apis/js-apis-sim.md | 8 ------- .../reference/apis/js-apis-telephony-data.md | 22 +++++++++++++++++++ 3 files changed, 42 insertions(+), 8 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-radio.md b/zh-cn/application-dev/reference/apis/js-apis-radio.md index eaf6b2c9e6..1334a30154 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-radio.md +++ b/zh-cn/application-dev/reference/apis/js-apis-radio.md @@ -384,6 +384,26 @@ promise.then(data => { }); ``` +## radio.isNrSupported7+ + +isNrSupported\(\): boolean + +判断当前设备是否支持5G\(NR\)。 + +**系统能力**:SystemCapability.Telephony.CoreService + +**返回值:** + +| 类型 | 说明 | +| ------- | -------------------------------- | +| boolean | - true:支持
- false:不支持 | + +**示例:** + +```js +let result = radio.isNrSupported(); +console.log("Result: "+ result); +``` ## radio.isNrSupported8+ 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 7ffd2749b7..057ff36a9f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-sim.md +++ b/zh-cn/application-dev/reference/apis/js-apis-sim.md @@ -2657,8 +2657,6 @@ getOpKey(slotId: number, callback: AsyncCallback): void 获取指定卡槽中SIM卡的opkey。使用callback异步回调。 -此接口为系统接口。 - **系统能力**:SystemCapability.Telephony.CoreService **参数:** @@ -2683,8 +2681,6 @@ getOpKey(slotId: number): Promise 获取指定卡槽中SIM卡的opkey。使用Promise异步回调。 -此接口为系统接口。 - **系统能力**:SystemCapability.Telephony.CoreService **参数:** @@ -2716,8 +2712,6 @@ getOpName(slotId: number, callback: AsyncCallback): void 获取指定卡槽中SIM卡的OpName。使用callback异步回调。 -此接口为系统接口。 - **系统能力**:SystemCapability.Telephony.CoreService **参数:** @@ -2742,8 +2736,6 @@ getOpName(slotId: number): Promise 获取指定卡槽中SIM卡的OpName。使用Promise异步回调。 -此接口为系统接口。 - **系统能力**:SystemCapability.Telephony.CoreService **参数:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-telephony-data.md b/zh-cn/application-dev/reference/apis/js-apis-telephony-data.md index c6b5f42945..8308b4d497 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-telephony-data.md +++ b/zh-cn/application-dev/reference/apis/js-apis-telephony-data.md @@ -63,6 +63,28 @@ promise.then((data) => { }); ``` +## data.getDefaultCellularDataSlotIdSync + +getDefaultCellularDataSlotIdSync(): number + +获取默认移动数据的SIM卡 + +**需要权限**:ohos.permission.GET_NETWORK_INFO + +**系统能力**:SystemCapability.Telephony.CellularData + +**返回值:** + +| 类型 | 说明 | +| ------ | -------------------------------------------------- | +| number | 获取默认移动数据的SIM卡。
0:卡槽1。
1:卡槽2。 | + +**示例:** + +```js +console.log("Result: "+ data.getDefaultCellularDataSlotIdSync()) +``` + ## data.setDefaultCellularDataSlotId setDefaultCellularDataSlotId(slotId: number,callback: AsyncCallback\): void -- GitLab