中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何通过号码判断归属地?
微信扫码分享
// 导入模块 import { i18n } from '@kit.LocalizationKit'; @Entry @Component struct Index { @State str: string = '' aboutToAppear(): void { // 以某种语言显示号码归属地 let phoneNumberFormat4 = new i18n.PhoneNumberFormat("CN"); this.str = phoneNumberFormat4.getLocationName('158****2312', 'en-GB') } build() { Column() { Text(this.str) .fontSize(30) .margin(20) } .height("100%") .width('100%') .justifyContent(FlexAlign.Center) } }