中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何获取电话号码归属地
微信扫码分享
import { i18n } from '@kit.LocalizationKit'; /** * 获取电话号码归属地 * @param phone * @param locale string 区域ID * country string 表示电话号码所属国家或地区代码。 * options PhoneNumberFormatOptions 电话号码格式化对象的相关选项。默认值:NATIONAL。 * @returns */ static getPhoneLocationName(phone: string, locale: string = "zh-CN", country: string = "CN", option?: i18n.PhoneNumberFormatOptions): string { let phoneNumberFormat: i18n.PhoneNumberFormat = new i18n.PhoneNumberFormat(country, option); return phoneNumberFormat.getLocationName(phone, locale); }