如何从mcc
(移动国家/地区代码)获取拨号代码?
例如。对于各种网络运营商,印度
404
或405
为mcc
,+91
为标准拨号代码。
我正在使用cordova-plugin-sim
的{{1}} plugin。
当我使用cordova
函数时,我通过window.plugins.sim.getSimInfo
响应获取此信息(由于隐私/安全原因,我没有显示所有信息):
JSON
我是否需要使用其他API来使用我从callState: 0
carrierName: "BSNL MOBILE"
countryCode: "in"
dataActivity: <some number>
deviceId: "<some id as integer>"
deviceSoftwareVersion: "<a 2 digit code>"
isNetworkRoaming: false
mcc: "404"
mnc: "66"
networkType: 10
phoneNumber: "<my mobile number without dial code>"
phoneType: 1
simSerialNumber: "<sim serial number, long one>"
simState: 5
subscriberId: "<subscriber Id, long one>"
获取的信息来获取拨号代码?