获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 控制台报错too eayly 和警告wx.getSystemInfo is deprecated?
基础库版本:3.6.6,skyline渲染引擎 1 错误:too eayly ,任何情况下都会报错。 2 警告:wx.getSystemInfo is deprecated,我的代码里没有调用wx.getSystemInfo,只要使用scroll-view 组件就会有这个警告,应该是这个组件内部调用的 [图片][图片]
2024-11-30 - 基础库3.0.2和3.1.0版本Skyline环境canvas不响应事件
3.0.2之后的版本,canvas不响应事件,3.0.1及其之前的版本都能响应。 我的手机是IQOO Z5,别的手机不知道 示例代码如下: <canvas style="width: 300px; height: 200px;background-color: red;" type="2d" bindtouchstart="touchStart" bindtouchmove="touchMove"></canvas> Page({ touchStart: function touchStart(e: any) { console.log("touchStart", e); }, touchMove: function touchMove(e: any) { console.log("touchMove", e); }, } )
2023-09-19