你这是用了uniapp还是mpvue?
出现大量未知错误,急!这是为什么呢?[图片]
2020-05-26路径的问题, "usingComponents": { "mp-navigation-bar": "weui-miniprogram/navigation-bar/navigation-bar", s升级前 "/weui-miniprogr..." 升级后就不行了 试了几个 去掉 / 就行了
更新了新版的开发工具后,为什么报文件未找到?miniprogram/page/weui/example/draggable/draggable.json: ["usingComponents"]["draggable"]: "../../components/draggable/draggable" 未找到 [图片] 如何解决,望指点。
2020-05-26unionid得要绑定微信开放平台https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/union-id.html#UnionID%E8%8E%B7%E5%8F%96%E9%80%94%E5%BE%84
wx.login + code2Session 获取不到 unionid?wx.login + code2Session 获取不到 unionid,已经按照文档,进行了同一主体的公众号关注和小程序授权操作 [图片]
2020-05-26支持了,都用了一年多了,放心用
2020年了,请问微信小程序支持css变量了吗?[图片][图片]如图所示,会不会有兼容问题,比如某些机型不支持,我目前使用时,在开发工具上和安卓机上看着都没问题
2020-05-26安装超时了,你更换一下下载地址 用淘宝镜像npm config set registry https://registry.npm.taobao.org
为什么我无法npm安装依赖?[图片] vant weapp也安装不了
2020-05-26增强编译勾一下看看?
小程序中使用Map 数据结构不能在data中定义?开发插件不能使用Map数据结构?1.在插件中的onLoad定义Map并setData进去 onLoad: function() { let type = new Map([ [ '1000', '全部' ], [ '1001', '装饰改装' ], [ '1002', '汽车美容' ], [ '1003', '快速保修' ], [ '1004', '电子影音' ], ]); this.setData({ type2: [...type], type: type }) this.getList(); }, 然后请求数据回来取值 obj.productType = this.data.type.get(obj.productType); .then(data => { let list = this.data.list; for (let obj of data.content) { obj.productType = this.data.type.get(obj.productType); obj.realPrice = obj.realPrice.toFixed(2); list.push(obj); } this.setData({ list: list, last: data.last, }) wx.stopPullDownRefresh(); }) 在插件中是可以的 [图片] 在第三方小程序中使用报错 [图片] 请问怎么解决?
2020-05-22小程序崩了就自动退出了..你试试..每个小程序分配的内存好像微信那边有限制 你查查
如何通过api的方式(非navigator 组件方式)实现自动退出小程序?详情如标题
2020-05-22我这边遇到过真机调试卡了,其他没啥问题就是卡机了,试试预览看看
textarea真机调试又又有不能输入?之前都是好的,今天突然就没用了试过手动focus为true然后value有,但是不渲染. <textarea class="item-description2" maxlength="32" bindinput="descriptionInput" value="{{questionItem.textAnswer}}" id="{{index}}" />
2020-05-21点击进度条和拖动滑块要清理定时器,完成动作在恢复定时器
使用slider组件做歌曲进度条,滑动时出现抖动?做了一个音乐进度条的组件processbar: processbar.wxml代码如下: [图片] processbar.js代码如下: // components/processbar.js //得到背景音乐管理器 let bgMusicManager=wx.getBackgroundAudioManager() Component({ /** * 组件的属性列表 */ properties: { }, /** * 组件的初始数据 */ data: { nowTime:"00:00", totalTime:"00:00", maxValue: 0, ctTime:0 //当前进度条的值 }, //生命周期函数 lifetimes:{ //ready:加载页面时触发 ready(){ this.init() //初始化页面 } }, /** * 组件的方法列表 */ methods: { init(){ // 只有在时间更新的事件中才能得到音乐总时长 bgMusicManager.onTimeUpdate(()=>{ //得到总时长(秒数) const tlTime=bgMusicManager.duration //设置总时长 this.setData({ totalTime: this.transToMS(tlTime), maxValue: Math.floor(tlTime) }) // console.log(bgMusicManager.currentTime) //设置当前时长 const t1=Math.floor(bgMusicManager.currentTime) this.setData({ ctTime: t1, nowTime: this.transToMS(t1) }) }) }, //将秒数转换成00:00的形式 transToMS(seconds){ const m=Math.floor(seconds/60); const s=Math.floor(seconds%60); const minute=m<10?("0"+m):(""+m); const second=s<10?("0"+s):(""+s); return minute+":"+second; }, changing(e){ }, changed(e){ //跳转歌曲时间 bgMusicManager.seek(e.detail.value); }, } }) 运行截图: [图片] 现在如果滑动进度条,进度条会出现抖动,我觉得可能是因为在onTimeUpdate()中设置了当前时间,导致出现的抖动,但我不知道如何改代码,把设置当前时间的代码放在哪??求指教!!
2020-05-21刚好有v20试过了没啥问题
微信小程序input调起数字键盘华为荣耀机闪屏严重<input bindinput="bindvalue" type="digit" cursor-spacing="204rpx" style="height:98rpx;color:#333;font-size:32rpx;border-bottom:1px solid #DADAE0;" placeholder-style="color:#999;font-size:32rpx;" placeholder="请输入宝宝的体重" value="{{value}}"></input> type='text'不会出现闪屏 请尽快修复
2020-05-21