怎么到处都是这玩意
摩尔庄园为什么没小程序?1
2021-06-09你搜一下,社区里遇到这个问题的人很多
canvas 2D 官方示例 真机调试 ?<!-- canvas.wxml --> <canvas type="2d" id="myCanvas"></canvas> // canvas.js Page({ onReady() { const query = wx.createSelectorQuery() query.select('#myCanvas') .fields({ node: true, size: true }) .exec((res) => { const canvas = res[0].node const ctx = canvas.getContext('2d') const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = res[0].width * dpr canvas.height = res[0].height * dpr ctx.scale(dpr, dpr) ctx.fillRect(0, 0, 100, 100) }) } }) VM13:2 MiniProgramError U.createEvent is not a function TypeError: U.createEvent is not a function at Q (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:30303) at eval (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:30601) at e.exports (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:35763) at eval (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:30552) at y.<computed> (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:33829) at O (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:33558) at Function.eval (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:33596) at <setTimeout callback function> at eval (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:110340) at eval (eval at n.call.document (http://127.0.0.1:42506/remote-debug/runtime.js?devtools_ignore=true:1:13107), <anonymous>:2:101485)
2021-06-09Canvas.requestAnimationFrame
canvas中怎么添加图形变形或移动时的过度效果?canvas中怎么添加图形变形或移动时的过度效果?
2021-06-09之前遇到过这种情况是因为调试设备dfu没有改变mac地址,手机系统蓝牙有缓存,在系统设置里关了蓝牙再打开就好了,看能不能帮到你
蓝牙模块getBLEDeviceServices ?用的好好的 ,今天突然来个红米noto9手机使用不了 一看getBLEDeviceServices 获取不到服务 别的手机都没问题。。 这是什么情况?? 怎么解决呢?
2021-06-09如果你用的小程序canvas 2d接口,按文档上的说明,用法是跟web canvas api是一样的,应该是没有draw这个方法,你需要改回小程序旧版canvas的用法
求助https://developers.weixin.qq.com/miniprogram/dev/api/canvas/CanvasContext.draw.html ctx.draw() [图片] 使用 ctx.fill() 画出来的是矩形 ctx.stroke() 调用无效 ctx.draw() 一直就是报错 文档也没写
2021-06-09不能直接获取吧,调用这个api之后,获取的不是deviceId吗?然后根据deviceId获取设备下的service uuid
蓝牙wx.startBluetoothDevicesDiscovery无service UUID?微信小程序使用蓝牙的wx.startBluetoothDevicesDiscovery接口,搜索到的附近设备有一部分是无service UUID,这个是什么问题? 版本号 Version 8.0.3
2021-06-08因为你的宽度被覆盖了,这样写 button { width: 100px!important; }
单行多个button按钮之间为什么无空隙?最近在学习小程序开发,自己手敲的代码,和教程代码一样(通过工具逐行比对了代码,确保没有敲错代码),是运行效果不一样,不知道问题出在哪里了?恳请大神赐教 [图片] [图片] 我敲的代码: <!--index.wxml--> <view class="box"> <view class='title'>基本绘图</view> <view> <canvas canvas-id="myCanvas" ></canvas> </view> <view class='btnLayout'> <button type='primary' bindtap="clear">清除</button> <button type='primary' bindtap="drawDot">画点</button> <button type='primary' bindtap="drawCircle">画圆</button> </view> <view class='btnLayout'> <button type='primary' bindtap="drawDash">画虚线</button> <button type='primary' bindtap="capAndJoin">端点交点</button> <button type='primary' bindtap="drawText">画字</button> </view> <view class='btnLayout'> <button type='primary' bindtap="circularGrad">圆形渐变</button> <button type='primary' bindtap="shadowRect">阴影矩形</button> <button type='primary' bindtap="translucent">半透明</button> </view> </view> /**index.wxss**/ canvas { width: 100%; height: 340px; background-color: cornflowerblue; } button { width: 100px; } .btnLayout { display: flex; flex-direction: row; margin: 10px; justify-content: space-around; } 教材附带的代码: <!--pages/API/Drawing/index.wxml--> <view class="box"> <view class='title'>基本绘图</view> <view> <canvas canvas-id="myCanvas" ></canvas> </view> <view class='btnLayout'> <button type='primary' bindtap="clear">清除</button> <button type='primary' bindtap="drawDot">画点</button> <button type='primary' bindtap="drawCircle">画圆</button> </view> <view class='btnLayout'> <button type='primary' bindtap="drawDash">画虚线</button> <button type='primary' bindtap="capAndJoin">端点交点</button> <button type='primary' bindtap="drawText">画字</button> </view> <view class='btnLayout'> <button type='primary' bindtap="circularGrad">圆形渐变</button> <button type='primary' bindtap="shadowRect">阴影矩形</button> <button type='primary' bindtap="translucent">半透明</button> </view> </view> /* pages/API/Drawing/index.wxss */ canvas { width: 100%; height: 340px; background-color: cornflowerblue; } button { width: 100px; } .btnLayout { display: flex; flex-direction: row; margin: 10px; justify-content: space-around; /* 弹性项目沿主轴方向平均分布,两边留有一半的间隔空间。 */ }
2021-06-08可以检查一下重定向什么的,按照我的观察一般遇见这种情况最后都不是微信的问题,上次还看到有个人出现这个问题是因为url用的反斜杠,排查了一天才发现
小程序页面请求后端接口报:fail url not in domain list,这是什么情况?域名已经添加到白名单,通过开发工具调试已经能访问,但是通过手机微信小程序访问就报:fail url not in domain list,域名为最近更换的,本以为有个生效延迟,但是等了三五天了都还是这样。有遇到过这样的情况吗?
2021-06-07因为你用的是旧api不支持同层渲染,文档里有写新的写法是支持设置zindex的
canvas同层渲染问题?同一个基础库版本,手机上canvas层级很高[图片][图片], 而开发者工具就不显示[图片][图片] 代码片段: https://developers.weixin.qq.com/s/vGlgRSmF7LqM
2021-06-07没见过,但是开发工具里有个Audits,可以用行一下碰碰运气看能不能找到问题
switchtab返回tab页后小程序闪退?调用switchtab返回tab页后,会短暂回到tab页然后立马关闭小程序回到微信聊天界面,有人知道这是怎么回事吗? 复现过程:登录后跳到转我的小店页面,这时点左上角返回按钮返回个人中心页,小程序会先回到个人中心页再关闭小程序 [视频]
2021-06-04