当前位置:   article > 正文

【微信小程序】wx.getSystemInfo(object)获取系统信息_wxp.getsystem()

wxp.getsystem()

object参数说明:

参数类型必填说明
successFunction接口调用成功的回调
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

 

success回调参数说明:

参数说明最低版本
model手机型号 
pixelRatio设备像素比 
screenWidth屏幕宽度1.1.0
screenHeight屏幕高度1.1.0
windowWidth可使用窗口宽度 
windowHeight可使用窗口高度 
language微信设置的语言 
version微信版本号 
system操作系统版本 
platform客户端平台 
fontSizeSetting用户字体大小设置。以“我-设置-通用-字体大小”中的设置为准,单位:px1.5.0
SDKVersion客户端基础库版本1.1.0

 

例子:

demo https://github.com/oopsguy/wechat-app-examples/tree/master/DouBanBookApp 中,

列表放在了<scroll-view></<scroll-view>里,

  1. <scroll-view scroll-y="true" style="height:{{scrollHeight}}px"
  2. bindscrolltolower="scrollLowerEvent">
  3. ...
  4. </scroll-view>

获取系统数据,并设置style(scrollHeight已在data中初始化了): 

  1. wx.getSystemInfo({
  2. success: (res) => {
  3. this.setData({
  4. scrollHeight: res.windowHeight - (100 * res.windowWidth / 750) //80为顶部搜索框区域高度 rpx转px 屏幕宽度/750
  5. });
  6. }
  7. })

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/684861
推荐阅读
相关标签
  

闽ICP备14008679号