- 【android与ios显示数据问题】数据在android和ios显示不一样?android显示正常
如题:在预览时,android的显示和ios显示不同 代码片段 https://developers.weixin.qq.com/s/8OIHUHm87Tqc
2021-05-31 - input bindinput 无效?
如题。 片段:https://developers.weixin.qq.com/s/9VhBfPmH7AcH
2019-11-12 - Component - lifetimes 使用methods段中定义的方法名?
官方例子中的第20行注释是 // 生命周期函数,可以为函数,或一个在methods段中定义的方法名 但是我将函数改成方法名,为什么报错。 地址:https://developers.weixin.qq.com/miniprogram/dev/reference/api/Component.html
2019-11-04 - 关于使用live-player播放视频(不是直播,不是视频客服)的审核?
描述:现需要使用组件live-player实现画面播放(已有服务可以生成rtmp视频流),请问需要申请什么才能通过小程序审核。
2019-10-29 - 获取历史版本的代码?
描述:本地代码丢失,但是能在小程序助手中查看到历史版本,是否能获取到历史版本的代码?
2019-10-28 - 远程操控,类似直播
- 需求的场景描述(希望解决的问题) 手机远程操控电脑时,我需要使用组件 live-player 那么我应该申请哪种类目,需要准备哪些审核证件。 谢谢。
2019-01-02 - web-view 页面mousemove失效
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo h5 代码 <script src="http://cdn.bootcss.com/jquery/2.2.3/jquery.js"></script> <div id="mouseMove"> <span id="span" style="color: red"></span> <button id="movebtn" style="width: 100px;height: 100px;">拖动我</button> </div> <script> var num = 0; $().ready(function(){ console.log('begin move') document.getElementById("movebtn").addEventListener("mousedown", function(e){ document.getElementById("span").innerHTML = e.clientX + ',' + e.clientY drag(document.getElementById("movebtn")) }); }) /** * elementToDrag mousedown 事件的元素 * @param elementToDrag * @param event */ function drag(elementToDrag){ document.addEventListener("mousemove", moveHandler, true); document.addEventListener("mouseup", upHandler, true); function moveHandler(e){ num++; document.getElementById("span").innerHTML = e.clientX + ',' + e.clientY console.log(e.clientX + ',' + e.clientY) if(e.stopPropagation) e.stopPropagation(); else e.cancelBubble = true; } function upHandler(e){ document.removeEventListener("mousemove", moveHandler, true); document.removeEventListener("mouseup", upHandler, true); console.log(3); if(e.stopPropagation) e.stopPropagation(); else e.cancelBubble = true; } } </script>
2018-12-19