问题依然存在。官方修复的怎么样了啊?
在canvas上进行双指缩放操作e.touches返回的数组有时候不准确1.在canvas上绘制一张图片 2.监听canvas的touchmove,touchstart等事件 3.先双指操作放大和缩小图片,多操作几次 4.然后再单指移动图片,此时发现仍然在缩放, 5.我区分是移动还是缩放是根据e.touches的数组长度来判断的,单指的时候也就是在第四步的时候发现e.touches数组长度仍然是2 单指的时候e.touches的长度应该是1才正确吧?
2020-09-06已经解决。那个体验版本的二维码有一个访问地址。但是没有注意。把那个地址改掉就可以了。
扫码打开总是绕过home直接跳转到tabbar的第一个页面,为什么?我在app.json中配置的启动页面是home。但是第一次扫码打开的时候会直接跳转到tabbar的第一个页面。再一次扫码没问题。但是如果删除小程序,重新扫码打开依然是跳过home页面直接打开tabbar的第一个页面。这个问题在开发环境中又没有办法调试。配置文件app.json如下。 { "pages": [ "pages/home/home", "pages/query/index/index", "pages/query/exam/exam", "pages/query/course/course" "pages/register/register" ], "tabBar": { "list": [ { "pagePath": "pages/query/index/index", "text": "首页", "iconPath": "images/icon-home.png", "selectedIconPath": "images/icon-home-active.png" }, { "pagePath": "pages/history/history", "text": "查询历史", "iconPath": "images/icon-history.png", "selectedIconPath": "images/icon-history-active.png" }, { "pagePath": "pages/person/index/index", "text": "个人中心", "iconPath": "images/icon-person.png", "selectedIconPath": "images/icon-person-active.png" } ], "backgroundColor": "#00a0e9", "color": "#fff", "selectedColor": "#f4ea2a", "borderStyle": "black" }, "sitemapLocation": "sitemap.json", "debug": true }
2020-02-22