uni-app:获取手机设备的系统信息(hbuilderx 3.7.3)
一,官方文档地址:
https://uniapp.dcloud.net.cn/api/system/info.html#
说明:刘宏缔的架构森林是一个专注架构的博客,
网站:https://blog.imgtouch.com
原文: https://blog.imgtouch.com/index.php/2023/06/05/uniapp-huo-qu-shou-ji-she-bei-de-xi-tong-xin-xi-hbuilderx-3/
对应的源码可以访问这里获取: https://github.com/liuhongdi/
或: https://gitee.com/liuhongdi
说明:作者:刘宏缔 邮箱: 371125307@qq.com
二,代码:
<template> <view> <view v-for="(item, index) in res" :key="index" > {{index}}:{{item}} </view> </view> </template> <script> export default { data() { return { res:{}, } }, onLoad(){ this.getSystemInfo(); }, methods: { getSystemInfo(){ let that = this; uni.getSystemInfo({ success: function (res) { console.log(res); that.res = res; } }); } } } </script> <style> </style>
三,测试效果
四,查看hbuilderx的版本: