bindinput or bindblur document: https://developers.weixin.qq.com/miniprogram/dev/component/input.html
搜索框绑定输入值?想要获取用户输入的搜索框的值,并传至另一页面。 <input type="text" placeholder="搜索公交线路、站台" confirm-type="search" bindtap="input" value="{{searchvalue}}" bindconfirm="search" ></input> <button bindtap="search" value="{{searchvalue}}">搜索</button> search:function(e){ let searchvalue = e.currentTarget.dataset.searchvalue; console.log(e.currentTarget.dataset.searchvalue); wx.navigateTo({ url: '../search/search?searchvalue='+ searchvalue }) },
2020-10-07我看刷新频率没有太大问题,可能是我写的位置有一点抖动,从而看起来有点卡顿吧,但是ios和安卓表现确实不一样
requestAnimationFrame在安卓上卡顿?使用新的canvas2d接口,在用requestAnimationFrame发现安卓会卡顿,而ios不会,请问何解?
2020-09-23我原先canvas是position:fixed,然后我改成了absolute, 参考https://developers.weixin.qq.com/miniprogram/dev/component/native-component.html#%E5%8E%9F%E7%94%9F%E7%BB%84%E4%BB%B6%E5%90%8C%E5%B1%82%E6%B8%B2%E6%9F%93; 无法定义原生组件为 [代码]position: fixed[代码]
canvas 2d query给出createView错误?想用canvas2d,在选中canvas时红米上一直报这个错误,在红米上query的.node与.exec的回调都不触发,在IOS和另一台安卓是可以的,如图[图片], 得到的结果: [图片] 似乎在exec或者node的时候导致了这个错误,有知道怎么解决的吗
2020-09-21兄弟,解决了吗,我也是这个问题
真机调试错误,这是什么情况?怎么定位问题?VM21:2 (in promise) MiniProgramError Cannot read property 'createView' of undefined TypeError: Cannot read property 'createView' of undefined at n.value (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1064980) at n.value (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:757375) at t (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:757542) at n.value (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:757631) at eval (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1300784) at new Promise (<anonymous>) at pu (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1300746) at eval (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1302216) at Array.forEach (<anonymous>) at r (eval at n.call.document (http://127.0.0.1:51844/remote-debug/runtime.js?devtools_ignore=true:1:11339), <anonymous>:2:1302194)
2020-09-21已解决,canvas对象本身的width和height与元素大小无关,而是你的canvas区域.就像如果实际元素大小100,但是你给canvas的width设置为50,则内容宽度拉长一倍,以此类推.
canvas2d drawImage尺寸不对?用新的2dAPI,在createImage时得到了图片看到尺寸是对的(正方形), 然后drawImage时发现得到的结果不对[图片] 随后找到了这个: canvas.width = res[0].node.width * dpr; canvas.height = res[0].node.height * dpr; ctx = res[0].node.getContext('2d') ctx.scale(dpr, dpr); 依旧没有解决问题 代码片段: https://developers.weixin.qq.com/s/FXwCkhmV7Tki
2020-09-11已经曲线救国
cover-view无法遮盖video简单的页面结构如下: <videoList/> <topbar/> 用cover-view做顶部导航栏fixed定位在顶部,一个视频列表,视频上都有一个cover-view的自定义按钮(这个没有问题,跟预想一致),但是!!!topbar整个都是用cover-view元素写的,却无法遮挡住videolist中的视频
2018-11-28