提交 4fed8bac 编写于 作者: Y YOUR_NAME

fix: fix js doc

Signed-off-by: Nliujiandong <liujiandong1@huawei.com>
上级 cb8acbf4
......@@ -84,7 +84,7 @@ dial\(phoneNumber: string, options?: DialOptions\): Promise<boolean\>
| 参数名 | 类型 | 必填 | 说明 |
| ----------- | --------------------------- | ---- | -------------------------------------- |
| phoneNumber | string | 是 | 电话号码。 |
| options | [DialOptions](#dialoptions) | | 通话参数,选择为语音通话还是视频通话。 |
| options | [DialOptions](#dialoptions) | | 通话参数,选择为语音通话还是视频通话。 |
**返回值:**
......@@ -338,7 +338,7 @@ isEmergencyPhoneNumber\(phoneNumber: string, options?: EmergencyNumberOptions\):
| 参数名 | 类型 | 必填 | 说明 |
| ----------- | -------------------------------------------------- | ---- | -------------- |
| phoneNumber | string | 是 | 电话号码。 |
| options | [EmergencyNumberOptions](#emergencynumberoptions7) | | 电话号码参数。 |
| options | [EmergencyNumberOptions](#emergencynumberoptions7) | | 电话号码参数。 |
**返回值:**
......@@ -426,7 +426,7 @@ formatPhoneNumber\(phoneNumber: string, options?: NumberFormatOptions\): Promise
| 参数名 | 类型 | 必填 | 说明 |
| ----------- | -------------------------------------------- | ---- | ---------------------- |
| phoneNumber | string | 是 | 电话号码。 |
| options | [NumberFormatOptions](#numberformatoptions7) | | 格式化参数,如国家码。 |
| options | [NumberFormatOptions](#numberformatoptions7) | | 格式化参数,如国家码。 |
**返回值:**
......@@ -566,32 +566,6 @@ promise.then(data => {
});
```
## call.answer<sup>7+</sup>
answer\(callback: AsyncCallback<void\>\): void
接听来电。使用callback异步回调。
此接口为系统接口。
**需要权限**:ohos.permission.ANSWER_CALL
**系统能力**:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
call.answer((err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
## call.answer<sup>7+</sup>
......@@ -656,9 +630,10 @@ promise.then(data => {
});
```
## call.hangup<sup>7+</sup>
hangup\(callback: AsyncCallback<void\>\): void
hangup\(callId: number, callback: AsyncCallback<void\>\): void
挂断电话。使用callback异步回调。
......@@ -671,23 +646,24 @@ hangup\(callback: AsyncCallback<void\>\): void
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | ---------- |
| -------- | ------------------------- | ---- | ----------------------------------------------- |
| callId | number | 是 | 呼叫id。可以通过订阅callDetailsChange事件获得。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
call.hangup((err, data) => {
call.hangup(1, (err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
## call.hangup<sup>7+</sup>
## call.answer<sup>9+</sup>
hangup\(callId: number, callback: AsyncCallback<void\>\): void
answer\(callback: AsyncCallback<void\>\): void
挂断电话。使用callback异步回调。
接听来电。使用callback异步回调。
此接口为系统接口。
......@@ -698,14 +674,13 @@ hangup\(callId: number, callback: AsyncCallback<void\>\): void
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | ----------------------------------------------- |
| callId | number | 是 | 呼叫id。可以通过订阅callDetailsChange事件获得。 |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
call.hangup(1, (err, data) => {
call.answer((err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
......@@ -746,38 +721,12 @@ promise.then(data => {
});
```
## call.reject<sup>7+</sup>
reject\(callback: AsyncCallback<void\>\): void
## call.hangup<sup>9+</sup>
拒绝来电。使用callback异步回调。
此接口为系统接口。
**需要权限**:ohos.permission.ANSWER_CALL
**系统能力**:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
call.reject((err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
## call.reject<sup>7+</sup>
reject\(options: RejectMessageOptions, callback: AsyncCallback<void\>\): void
hangup\(callback: AsyncCallback<void\>\): void
拒绝来电。使用callback异步回调。
挂断电话。使用callback异步回调。
此接口为系统接口。
......@@ -788,17 +737,13 @@ reject\(options: RejectMessageOptions, callback: AsyncCallback<void\>\): void
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------------- | ---- | -------------- |
| options | [RejectMessageOptions](#rejectmessageoptions7) | 是 | 拒绝消息选项。 |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
let rejectMessageOptions={
messageContent: "拦截陌生号码"
}
call.reject(rejectMessageOptions, (err, data) => {
call.hangup((err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
......@@ -831,6 +776,7 @@ call.reject(1, (err, data) => {
});
```
## call.reject<sup>7+</sup>
reject\(callId: number, options: RejectMessageOptions, callback: AsyncCallback<void\>\): void
......@@ -902,6 +848,65 @@ promise.then(data => {
});
```
## call.reject<sup>9+</sup>
reject\(callback: AsyncCallback<void\>\): void
拒绝来电。使用callback异步回调。
此接口为系统接口。
**需要权限**:ohos.permission.ANSWER_CALL
**系统能力**:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------- | ---- | ---------- |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
call.reject((err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
## call.reject<sup>9+</sup>
reject\(options: RejectMessageOptions, callback: AsyncCallback<void\>\): void
拒绝来电。使用callback异步回调。
此接口为系统接口。
**需要权限**:ohos.permission.ANSWER_CALL
**系统能力**:SystemCapability.Telephony.CallManager
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ---------------------------------------------- | ---- | -------------- |
| options | [RejectMessageOptions](#rejectmessageoptions7) | 是 | 拒绝消息选项。 |
| callback | AsyncCallback&lt;void&gt; | 是 | 回调函数。 |
**示例:**
```js
let rejectMessageOptions={
messageContent: "拦截陌生号码"
}
call.reject(rejectMessageOptions, (err, data) => {
console.log(`callback: err->${JSON.stringify(err)}, data->${JSON.stringify(data)}`);
});
```
## call.holdCall<sup>7+</sup>
holdCall\(callId: number, callback: AsyncCallback<void\>\): void
......@@ -2424,7 +2429,7 @@ call.setAudioDevice(1, (err, data) => {
```
## call.setAudioDevice<sup>8+</sup>
## call.setAudioDevice<sup>9+</sup>
setAudioDevice\(device: AudioDevice, options: AudioDeviceOptions, callback: AsyncCallback<void\>\): void
......@@ -2454,7 +2459,7 @@ call.setAudioDevice(1, audioDeviceOptions, (err, data) => {
```
## call.setAudioDevice<sup>8+</sup>
## call.setAudioDevice<sup>9+</sup>
setAudioDevice(device: AudioDevice, options?: AudioDeviceOptions): Promise<void\>
......@@ -2805,7 +2810,7 @@ promise.then(data => {
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ------------------------ | ---------------------------------- | ---- | ------------------------------------------------------------ |
| extras | boolean | 否 | 根据extras的值判断是否为视频通话,默认为语音通话。<br/>- true:视频通话。<br/>- false:语音通话。 |
| accountId <sup>8+</sup> | number | 否 | 帐户Id。<br/>- 0:卡槽1<br/>- 1:卡槽2<br/>此接口为系统接口。 |
......@@ -2832,7 +2837,7 @@ promise.then(data => {
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ---------------------------------------------- |
| slotId | number | 否 | 卡槽ID:<br/>- 卡槽1:`0`<br/>- 卡槽2:`1`。 |
......@@ -2842,7 +2847,7 @@ promise.then(data => {
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ----------- | ------ | ---- | ---------------------------------------------------------- |
| countryCode | string | 否 | 国家码,支持所有国家的国家码,如:CN(中国)。默认为:CN。 |
......@@ -2905,7 +2910,7 @@ IP多媒体系统调用模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ----------- | ---------------------------------------------------- | ---- | ---------------- |
| transferNum | string | 是 | 转移编号 |
| type | [CallTransferType](#calltransfertype8) | 是 | 呼叫转移类型 |
......@@ -2949,7 +2954,7 @@ IP多媒体系统调用模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| --------------- | ---------------------------------------- | ---- | -------------- |
| accountNumber | string | 是 | 帐号号码 |
| speakerphoneOn | boolean | 是 | 扬声器接通电话 |
......@@ -3033,7 +3038,7 @@ IP多媒体系统调用模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------------------------------------------- | ---- | ------------ |
| type | [CallRestrictionType](#callrestrictiontype8) | 是 | 呼叫限制类型 |
| password | string | 是 | 密码 |
......@@ -3060,7 +3065,7 @@ IP多媒体系统调用模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ------- | ------------------------------------------ | ---- | -------------- |
| eventId | [CallAbilityEventId](#callabilityeventid8) | 是 | 呼叫能力事件Id |
......@@ -3113,7 +3118,7 @@ IP多媒体系统调用模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| -------------- | ------ | ---- | -------- |
| messageContent | string | 是 | 消息内容 |
......@@ -3125,7 +3130,7 @@ IP多媒体系统调用模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CallManager。
| 参数名 | 类型 | 必填 | 说明 |
| 名称 | 类型 | 必填 | 说明 |
| ------ | ---------------------------------- | ---- | -------- |
| status | [TransferStatus](#transferstatus8) | 是 | 转移状态 |
| number | string | 是 | 号码 |
......
......@@ -1518,7 +1518,7 @@ queryKey(id: number, holder?: Holder): Promise&lt;string&gt;
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------------- | --------------------------------------- | ---- | ---- | -------------------------------------- |
| id | number | 是 | 否 | 联系人的id。 |
| key | string | 是 | 否 | 联系人的key。 |
......@@ -1580,7 +1580,7 @@ myContact.phoneNumbers = [phoneNumber];
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------- | ------------------------- | ---- | ---- | ---------------- |
| attributes | [Attribute](#attribute)[] | 是 | 是 | 联系人属性列表。 |
......@@ -1661,7 +1661,7 @@ let attributes = [contact.Attribute.ATTR_EMAIL, contact.Attribute.ATTR_NAME, con
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------- | -------- | ---- | ---- | ---------------- |
| email | string | 是 | 是 | 邮箱地址。 |
| labelName | string | 是 | 是 | 邮箱的类型名称。 |
......@@ -1695,7 +1695,7 @@ email.email = "xxx@email.com";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------- | -------- | ---- | ---- | ---------- |
| bundleName | string | 是 | 否 | 包名。 |
| displayName | string | 是 | 否 | 应用名称。 |
......@@ -1739,7 +1739,7 @@ holder.holderId = 0;
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| --------- | -------- | ---- | ---- | -------------- |
| eventDate | string | 是 | 是 | 事件的日期。 |
| labelName | string | 是 | 是 | 事件类型名称。 |
......@@ -1770,7 +1770,7 @@ event.eventDate = "xxxxxx";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------- | -------- | ---- | ---- | ------------------ |
| groupId | number | 是 | 是 | 联系人群组的id。 |
| title | string | 是 | 是 | 联系人群组的名称。 |
......@@ -1818,7 +1818,7 @@ group.title = "title";
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| --------- | -------- | ---- | ---- | ------------------ |
| imAddress | string | 是 | 是 | 即时消息地址。 |
| labelName | string | 是 | 是 | 即时消息类型名称。 |
......@@ -1851,7 +1851,7 @@ imAddress.imAddress = "imAddress";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------------------ | -------- | ---- | ---- | --------------------------- |
| familyName | string | 是 | 是 | 联系人的家庭姓名。 |
| familyNamePhonetic | string | 是 | 是 | 联系人的家庭姓名拼音。 |
......@@ -1890,7 +1890,7 @@ name.fullName = "fullName";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| -------- | -------- | ---- | ---- | -------------- |
| nickName | string | 是 | 是 | 联系人的昵称。 |
......@@ -1919,7 +1919,7 @@ nickName.nickName = "nickName";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------- | -------- | ---- | ---- | ------------------ |
| noteContent | string | 是 | 是 | 联系人的备注内容。 |
......@@ -1948,7 +1948,7 @@ note.noteContent = "noteContent";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----- | -------- | ---- | ---- | ---------- |
| name | string | 是 | 是 | 组织名称。 |
| title | string | 是 | 是 | 组织标题。 |
......@@ -2010,7 +2010,7 @@ organization.title = "title";
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ----------- | -------- | ---- | ---- | ------------------ |
| labelName | string | 是 | 是 | 电话号码类型名称。 |
| phoneNumber | string | 是 | 是 | 电话号码。 |
......@@ -2042,7 +2042,7 @@ phoneNumber.phoneNumber = "138xxxxxxxx";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---- | -------- | ---- | ---- | -------------- |
| uri | string | 是 | 是 | 联系人的头像。 |
......@@ -2084,7 +2084,7 @@ portrait.uri = "uri";
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------------- | -------- | ---- | ---- | -------------------------- |
| city | string | 是 | 是 | 联系人所在的城市。 |
| country | string | 是 | 是 | 联系人所在的国家。 |
......@@ -2146,7 +2146,7 @@ postalAddress.city = "city";
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------------ | -------- | ---- | ---- | -------------- |
| labelName | string | 是 | 是 | 关系类型名称。 |
| relationName | string | 是 | 是 | 关系名称。 |
......@@ -2192,7 +2192,7 @@ relation.labelId = contact.Relation.RELATION_ASSISTANT;
### 属性
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ---------- | -------- | ---- | ---- | --------------------------------- |
| labelName | string | 是 | 是 | 会话发起协议(SIP)地址类型名称。 |
| sipAddress | string | 是 | 是 | 会话发起协议(SIP)地址。 |
......@@ -2222,7 +2222,7 @@ sipAddress.sipAddress = "sipAddress";
**系统能力**:以下各项对应的系统能力均为SystemCapability.Applications.ContactsData。
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------- | -------- | ---- | ---- | ------------------ |
| website | string | 是 | 是 | 联系人的网站信息。 |
......
......@@ -531,9 +531,9 @@ SIM卡类型和状态。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.StateRegistry。
| 名称 | 类型 | 说明 |
| ----------------- | --------------------- | ------------------------------------------------------------ |
| type | [CardType](js-apis-sim.md#cardtype) | SIM卡类型,参考sim的[CardType](js-apis-sim.md#cardtype)。 |
| state | [SimState](js-apis-sim.md#simstate) | SIM卡状态,参考sim的[SimState](js-apis-sim.md#simstate)。 |
| reason<sup>8+</sup> | [LockReason](#lockreason8) | SIM卡锁类型。 |
| 名称 | 类型 | 必填 | 说明 |
| ------------------- | ----------------------------------- | ---- | -------------------------------------------------------- |
| type | [CardType](js-apis-sim.md#cardtype) | 是 | SIM卡类型,参考sim的[CardType](js-apis-sim.md#cardtype)。 |
| state | [SimState](js-apis-sim.md#simstate) | 是 | SIM卡状态,参考sim的[SimState](js-apis-sim.md#simstate)。 |
| reason<sup>8+</sup> | [LockReason](#lockreason8) | 是 | SIM卡锁类型。 |
......@@ -1796,10 +1796,10 @@ radio.off('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, (err, data) =
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 参数名 | 类型 | 说明 |
| ----------- | --------------------------- | ------------------ |
| signalType | [NetworkType](#networktype) | 网络信号强度类型。 |
| signalLevel | number | 网络信号强度等级。 |
| 名称 | 类型 | 必填 | 说明 |
| ----------- | --------------------------- | ---- | --------------- -- |
| signalType | [NetworkType](#networktype) | 是 | 网络信号强度类型。 |
| signalLevel | number | 是 | 网络信号强度等级。 |
## NetworkType
......@@ -1824,17 +1824,17 @@ radio.off('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, (err, data) =
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ----------------- | --------------------- | ------------------------------------------------------------ |
| longOperatorName | string | 注册网络的长运营商名称。 |
| shortOperatorName | string | 注册网络的短运营商名称。 |
| plmnNumeric | string | 注册网络的PLMN码。 |
| isRoaming | boolean | 是否处于漫游状态。 |
| regState | [RegState](#regstate) | 设备的网络注册状态。 |
| cfgTech<sup>8+</sup> | [RadioTechnology](#radiotechnology) | 设备的无线接入技术。 |
| nsaState | [NsaState](#nsastate) | 设备的NSA网络注册状态。 |
| isCaActive | boolean | CA的状态。 |
| isEmergency | boolean | 此设备是否只允许拨打紧急呼叫。 |
| 名称 | 类型 | 必填 | 说明 |
| -------------------- | ----------------------------------- | ---- | ------------------------------------------------------------ |
| longOperatorName | string | 是 | 注册网络的长运营商名称。 |
| shortOperatorName | string | 是 | 注册网络的短运营商名称。 |
| plmnNumeric | string | 是 | 注册网络的PLMN码。 |
| isRoaming | boolean | 是 | 是否处于漫游状态。 |
| regState | [RegState](#regstate) | 是 | 设备的网络注册状态。 |
| cfgTech<sup>8+</sup> | [RadioTechnology](#radiotechnology) | 是 | 设备的无线接入技术。 |
| nsaState | [NsaState](#nsastate) | 是 | 设备的NSA网络注册状态。 |
| isCaActive | boolean | 是 | CA的状态。 |
| isEmergency | boolean | 是 | 此设备是否只允许拨打紧急呼叫。 |
## RegState
......@@ -1932,13 +1932,13 @@ radio.off('imsRegStateChange', 0, radio.ImsServiceType.TYPE_VIDEO, (err, data) =
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ----------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
| networkType | [NetworkType](#networktype) | 获取服务单元的网络类型。 |
| isCamped | boolean | 获取服务单元的状态。 |
| timeStamp | number | 获取单元格信息时获取时间戳。 |
| signalInformation | [SignalInformation](#signalinformation) | 信号信息。 |
| data | [CdmaCellInformation](#cdmacellinformation8) \| [GsmCellInformation](#gsmcellinformation8) \| [LteCellInformation](#ltecellinformation8) \| [NrCellInformation](#nrcellinformation8) \| [TdscdmaCellInformation](#tdscdmacellinformation8) | Cdma小区信息 \|Gsm小区信息\|Lte小区信息\|Nr小区信息\|Tdscdma小区信息 |
| 名称 | 类型 | 必填 | 说明 |
| ----------------- | --------------------------------------- | ---- | ------------------------------------------------------------ |
| networkType | [NetworkType](#networktype) | 是 | 获取服务单元的网络类型。 |
| isCamped | boolean | 是 | 获取服务单元的状态。 |
| timeStamp | number | 是 | 获取单元格信息时获取时间戳。 |
| signalInformation | [SignalInformation](#signalinformation) | 是 | 信号信息。 |
| data | [CdmaCellInformation](#cdmacellinformation8) \| [GsmCellInformation](#gsmcellinformation8) \| [LteCellInformation](#ltecellinformation8) \| [NrCellInformation](#nrcellinformation8) \| [TdscdmaCellInformation](#tdscdmacellinformation8) | 是 | Cdma小区信息 \|Gsm小区信息\|Lte小区信息\|Nr小区信息\|Tdscdma小区信息 |
## CdmaCellInformation<sup>8+</sup>
......@@ -1948,13 +1948,13 @@ CDMA小区信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| --------- | ------ | ------------ |
| baseId | number | 基站Id。 |
| latitude | number | 经度。 |
| longitude | number | 纬度。 |
| nid | number | 网络识别码。 |
| sid | number | 系统识别码。 |
| 名称 | 类型 | 必填 | 说明 |
| --------- | ------ | ---- | ------------ |
| baseId | number | 是 | 基站Id。 |
| latitude | number | 是 | 经度。 |
| longitude | number | 是 | 纬度。 |
| nid | number | 是 | 网络识别码。 |
| sid | number | 是 | 系统识别码。 |
## GsmCellInformation<sup>8+</sup>
......@@ -1964,14 +1964,14 @@ GSM小区信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------ | ------ | -------------------- |
| lac | number | 位置区编号。 |
| cellId | number | 小区号。 |
| arfcn | number | 绝对无线频率信道号。 |
| bsic | number | 基站识别号。 |
| mcc | string | 移动国家码。 |
| mnc | string | 移动网号。 |
| 名称 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | -------------------- |
| lac | number | 是 | 位置区编号。 |
| cellId | number | 是 | 小区号。 |
| arfcn | number | 是 | 绝对无线频率信道号。 |
| bsic | number | 是 | 基站识别号。 |
| mcc | string | 是 | 移动国家码。 |
| mnc | string | 是 | 移动网号。 |
## LteCellInformation<sup>8+</sup>
......@@ -1981,16 +1981,16 @@ LTE小区信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------------- | ------- | ----------------------- |
| cgi | number | 小区全球标识。 |
| pci | number | 物理小区识别。 |
| tac | number | 跟踪区域代码。 |
| earfcn | number | 绝对无线频率信道号。 |
| bandwidth | number | 带宽。 |
| mcc | string | 移动国家码。 |
| mnc | string | 移动网号。 |
| isSupportEndc | boolean | 是否支持新无线电_双连接 |
| 名称 | 类型 | 必填 | 说明 |
| ------------- | ------- | ---- | ----------------------- |
| cgi | number | 是 | 小区全球标识。 |
| pci | number | 是 | 物理小区识别。 |
| tac | number | 是 | 跟踪区域代码。 |
| earfcn | number | 是 | 绝对无线频率信道号。 |
| bandwidth | number | 是 | 带宽。 |
| mcc | string | 是 | 移动国家码。 |
| mnc | string | 是 | 移动网号。 |
| isSupportEndc | boolean | 是 | 是否支持新无线电_双连接 |
## NrCellInformation<sup>8+</sup>
......@@ -2000,14 +2000,14 @@ NR小区信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------- | ------ | ---------------- |
| nrArfcn | number | 5G频点号。 |
| pci | number | 物理小区识别。 |
| tac | number | 跟踪区域代码。 |
| nci | number | 5G网络小区标识。 |
| mcc | string | 移动国家码。 |
| mnc | string | 移动网号。 |
| 名称 | 类型 | 必填 | 说明 |
| ------- | ------ | ---- | ---------------- |
| nrArfcn | number | 是 | 5G频点号。 |
| pci | number | 是 | 物理小区识别。 |
| tac | number | 是 | 跟踪区域代码。 |
| nci | number | 是 | 5G网络小区标识。 |
| mcc | string | 是 | 移动国家码。 |
| mnc | string | 是 | 移动网号。 |
## TdscdmaCellInformation<sup>8+</sup>
......@@ -2017,14 +2017,14 @@ TD-SCDMA小区信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------ | ------ | ------------ |
| lac | number | 位置区编号。 |
| cellId | number | 小区号。 |
| cpid | number | 小区参数Id。 |
| uarfcn | number | 绝对射频号。 |
| mcc | string | 移动国家码。 |
| mnc | string | 移动网号。 |
| 名称 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------------ |
| lac | number | 是 | 位置区编号。 |
| cellId | number | 是 | 小区号。 |
| cpid | number | 是 | 小区参数Id。 |
| uarfcn | number | 是 | 绝对射频号。 |
| mcc | string | 是 | 移动国家码。 |
| mnc | string | 是 | 移动网号。 |
## WcdmaCellInformation<sup>8+</sup>
......@@ -2034,14 +2034,14 @@ WCDMA小区信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------ | ------ | ------------ |
| lac | number | 位置区编号。 |
| cellId | number | 小区号。 |
| psc | number | 主扰码。 |
| uarfcn | number | 绝对射频号。 |
| mcc | string | 移动国家码。 |
| mnc | string | 移动网号。 |
| 名称 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | ------------ |
| lac | number | 是 | 位置区编号。 |
| cellId | number | 是 | 小区号。 |
| psc | number | 是 | 主扰码。 |
| uarfcn | number | 是 | 绝对射频号。 |
| mcc | string | 是 | 移动国家码。 |
| mnc | string | 是 | 移动网号。 |
## NrOptionMode<sup>8+</sup>
......@@ -2066,10 +2066,10 @@ NR的选择模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ---------------------- | ------------------------------------------------- | -------------- |
| isNetworkSearchSuccess | boolean | 网络搜索成功。 |
| networkSearchResult | Array<[NetworkInformation](#networkinformation)\> | 网络搜索结果。 |
| 名称 | 类型 | 必填 | 说明 |
| ---------------------- | ------------------------------------------------- | ---- | -------------- |
| isNetworkSearchSuccess | boolean | 是 | 网络搜索成功。 |
| networkSearchResult | Array<[NetworkInformation](#networkinformation)\> | 是 | 网络搜索结果。 |
## NetworkInformation
......@@ -2079,12 +2079,12 @@ NR的选择模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| --------------- | ----------------------------------------- | -------------- |
| operatorName | string | 运营商的名称。 |
| operatorNumeric | string | 运营商数字。 |
| state | [NetworkInformationState](#networkinformationstate) | 网络信息状态。 |
| radioTech | string | 无线电技术。 |
| 名称 | 类型 | 必填 | 说明 |
| --------------- | --------------------------------------------------- | ---- | -------------- |
| operatorName | string | 是 | 运营商的名称。 |
| operatorNumeric | string | 是 | 运营商数字。 |
| state | [NetworkInformationState](#networkinformationstate) | 是 | 网络信息状态。 |
| radioTech | string | 是 | 无线电技术。 |
## NetworkInformationState
......@@ -2109,12 +2109,12 @@ NR的选择模式。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------------------ | --------------------------------------------- | -------------------------------------- |
| slotId | number | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| selectMode | [NetworkSelectionMode](#networkselectionmode) | 网络选择模式。 |
| networkInformation | [NetworkInformation](#networkinformation) | 网络信息。 |
| resumeSelection | boolean | 继续选择。 |
| 名称 | 类型 | 必填 | 说明 |
| ------------------ | --------------------------------------------- | ---- | -------------------------------------- |
| slotId | number | 是 | 卡槽ID。<br/>- 0:卡槽1<br/>- 1:卡槽2 |
| selectMode | [NetworkSelectionMode](#networkselectionmode) | 是 | 网络选择模式。 |
| networkInformation | [NetworkInformation](#networkinformation) | 是 | 网络信息。 |
| resumeSelection | boolean | 是 | 继续选择。 |
## ImsRegState<sup>9+</sup>
......@@ -2152,10 +2152,10 @@ IMS注册信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ----------- | ---------------------------- | ------------- |
| imsRegState | [ImsRegState](#imsregstate9) | IMS注册状态。 |
| imsRegTech | [ImsRegTech](#imsregtech9) | IMS注册技术。 |
| 名称 | 类型 | 必填 | 说明 |
| ----------- | ---------------------------- | ---- | ------------- |
| imsRegState | [ImsRegState](#imsregstate9) | 是 | IMS注册状态。 |
| imsRegTech | [ImsRegTech](#imsregtech9) | 是 | IMS注册技术。 |
## ImsServiceType<sup>9+</sup>
......
......@@ -2848,10 +2848,10 @@ SIM卡状态。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| --------------- | ------ | ------------------ |
| result | number | 当前操作的结果。 |
| remain?: number | number | 剩余次数(可以为空)。 |
| 名称 | 类型 | 必填 | 说明 |
| --------------- | ------ | ---- | --------------------- |
| result | number | 是 | 当前操作的结果。 |
| remain?: number | number | 否 | 剩余次数(可以为空)。|
## LockInfo<sup>8+</sup>
......@@ -2861,11 +2861,11 @@ SIM卡状态。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| -------- | ------------------------ | ------ |
| lockType | [LockType](#locktype8) | 锁类型。 |
| password | string | 密码。 |
| state | [LockState](#lockstate8) | 锁状态。 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | ------------------------ | ---- | -------- |
| lockType | [LockType](#locktype8) | 是 | 锁类型。 |
| password | string | 是 | 密码。 |
| state | [LockState](#lockstate8) | 是 | 锁状态。 |
## PersoLockInfo<sup>8+</sup>
......@@ -2875,10 +2875,10 @@ SIM卡状态。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| -------- | -------------------------------- | ------------ |
| lockType | [PersoLockType](#persolocktype8) | 定制锁的类型。 |
| password | string | 密码。 |
| 名称 | 类型 | 必填 | 说明 |
| -------- | -------------------------------- | ---- | ------------- |
| lockType | [PersoLockType](#persolocktype8) | 是 | 定制锁的类型。|
| password | string | 是 | 密码。 |
## IccAccountInfo<sup>7+</sup>
......@@ -2888,15 +2888,15 @@ Icc账户信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ---------- | ------- | ---------------- |
| simId | number | SIM卡ID。 |
| slotIndex | number | 卡槽ID。 |
| isEsim | boolean | 标记卡是否是eSim。 |
| isActive | boolean | 卡是否被激活。 |
| iccId | string | ICCID号码。 |
| showName | string | SIM卡显示名称。 |
| showNumber | string | SIM卡显示号码。 |
| 名称 | 类型 | 必填 | 说明 |
| ---------- | ------- | ---- | ---------------- |
| simId | number | 是 | SIM卡ID。 |
| slotIndex | number | 是 | 卡槽ID。 |
| isEsim | boolean | 是 | 标记卡是否是eSim。 |
| isActive | boolean | 是 | 卡是否被激活。 |
| iccId | string | 是 | ICCID号码。 |
| showName | string | 是 | SIM卡显示名称。 |
| showNumber | string | 是 | SIM卡显示号码。 |
## OperatorConfig<sup>8+</sup>
......@@ -2906,10 +2906,10 @@ Icc账户信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ----- | ------ | ---- |
| field | string | 字段 |
| value | string | 值 |
| 名称 | 类型 | 必填 | 说明 |
| ----- | ------ | ---- | ---- |
| field | string | 是 | 字段 |
| value | string | 是 | 值 |
## DiallingNumbersInfo<sup>8+</sup>
......@@ -2919,12 +2919,12 @@ Icc账户信息。
**系统能力**:以下各项对应的系统能力均为SystemCapability.Telephony.CoreService。
| 名称 | 类型 | 说明 |
| ------------ | ------ | -------- |
| alphaTag | string | 标签。 |
| number | string | 号码。 |
| recordNumber | number | 记录编号。 |
| pin2 | string | pin2密码。 |
| 名称 | 类型 | 必填 | 说明 |
| ------------ | ------ | ---- | ---------- |
| alphaTag | string | 是 | 标签。 |
| number | string | 是 | 号码。 |
| recordNumber | number | 是 | 记录编号。 |
| pin2 | string | 是 | pin2密码。 |
## ContactType<sup>8+</sup>
......
......@@ -59,7 +59,7 @@ promise.then((data) => {
});
```
## data.getDefaultCellularDataSlotIdSync
## data.getDefaultCellularDataSlotIdSync<sup>9+</sup>
getDefaultCellularDataSlotIdSync(): number
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册