微信开发文档提供监听 当前得设备,通过
//方法 1
const curPhone = wx.getSystemInfo();//获取当前得设备 console.log(curPhone)
//方法 2
const res = wx.getSystemInfoSync();
console.log(res)//res对象中对应得具体属性值 可参考 微信开发者文档
2023-10-20 17:02:46
微信开发文档提供监听 当前得设备,通过
//方法 1
const curPhone = wx.getSystemInfo();//获取当前得设备 console.log(curPhone)
//方法 2
const res = wx.getSystemInfoSync();
console.log(res)//res对象中对应得具体属性值 可参考 微信开发者文档