小程序在PC端打开时如何适配PC的宽度和高度?
大家好,我在小程序上适配PC的宽度和高度时在app.js中使用如下语句,却提示windowWidth和windowHeigth没有定义,麻烦问下我该如何设置呢?谢谢
wx.getSystemInfo({
success: function (res) {
windowWidth = res.windowWidth;
windowHeigth = res.windowHeight;
}
})