中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何通过代码获取设备的deviceType?
微信扫码分享
import { deviceInfo } from '@kit.BasicServicesKit' @Entry @Component struct Index { @State deviceType: string = '未知' aboutToAppear(): void { this.deviceType = deviceInfo.deviceType } build() { Column() { } .height('100%') .width('100%') } }