- image的mode模式aspectFill支持显示顶部2021-07-01
- textarea组件输入字数超出最大输入长度后超出部分不显示但会成功输入一到两个字
textarea设置maxlength为100,输入到第101个字时不显示,但成功输入,导致提交的数据出现长度限制的错误,代码片段如下: <textarea v-show="textareaVisibale" @input="textareaInput($event,100,'memberDesc')" v-model="addForm.memberDesc" :show-confirm-bar="showConfirm" auto-height="true" maxlength="100" :adjust-position="inputUp" @focus="inputFocus" @blur="inputBlur"/> textareaInput(event,maxlength,propertyName){ if(event.detail.cursor==maxlength){ uni.showToast({ title:'最多只能输入'+maxlength+'个字!', icon:'none', duration:2000 }) }else if(event.detail.cursor>maxlength){ uni.showToast({ title:'最多只能输入'+maxlength+'个字!', icon:'none', duration:2000 }) console.log('event.detail.cursor:',event.detail.cursor); console.log('event.detail.value:',event.detail.value); console.log('this.addForm[propertyName]:',this.addForm[propertyName]); // this.addForm[propertyName]=this.addForm[propertyName].substring(0,maxlength) // this.$set(event.detail,'value',event.detail.value.substring(0,maxlength)) } }, 测试结果如图: [图片]
2020-11-18 - 小程序长按识别二维码ios识别不了
微信小程序web-view跳转到公众号文章去了,然后里面有个二维码,ios长按就没有识别二维码功能,安卓都是可以?该问题题该如何解决?
2018-08-09 - 关于live-pusher问题
我们使用小程序SDK的<live-pusher> 组件进行RTMP握手时,微信7.0.5的版本收不到1002的握手成功消息,低版本的则可以
2019-07-09 - 安卓canvasToTempFilePath导致白屏、崩溃
canvas的draw完成后,调用 wx.canvasToTempFilePath 生成临时文件时,部分android机子白屏、崩溃、或页面无法响应任何点击事件。 目前业务是设置canvas尺寸为620*970,部分小米机子在上述操作步骤会90%崩溃。 当尺寸缩小一半时,在操作几次后,也大概率出现。 [图片]
2019-05-23 - 三星SM-N9500手机闪屏,甚至进程卡死、自动退出
- 当前 Bug 的表现(可附上截图) 手机型号:三星SM-N9500手机(小米8也偶现过几次),IOS没问题 代码demo:基本代码demo在下面,但是有个关键点:image 的 src 不能是普通图片url,必须是canvas画图后产生的本地url 操作: 1、初次进入swiper页面,图片加载正常 2、退出,再进入(有时重复两三次该步骤即可),页面开始闪动一下,整个页面白屏,除了胶囊还在,其余所有东西都不见了,连swiper同层级的其他元素也一并消失,几百毫秒后恢复正常,同时图片也加载出来了 3、如果swiper有三张图片,画面有时会闪三次 4、重复多次退出、再进入操作,该情况会越来越明显,越来越严重 5、最严重的情况是页面一直闪动不停,有时闪动几十下就停下来,有时停不下来,有时闪动几下之后,整个小程序就自动退出了 6、将image 的 src替换为网络url,恢复正常 7、将image挪出swiper,但是src仍旧是canvas画图后产生的本地url,也正常 8、swiper有多个swiper-item,但是只显示一张image ,其余swiper-item空载,也没问题(swiper内只要超过两张image就开始出现问题) - 预期表现 - 复现路径 - 提供一个最简复现 Demo <swiper class="swiper" previous-margin="60px" next-margin="60px"> <swiper-item v-for="(item, i) in list" :key="i"> <div :id="item.id"> <!-- <canvas :canvas-id="item.id"></canvas> --> <image :src="item.imgUrl"></image> </div> </swiper-item> </swiper>
2019-01-21 - 小程序wx.chooseImage单独调起album,ios部分手机无法完成
小程序wx.chooseImage单独调起album或者camera,ios部分手机无法调起相机。如果是两个一起调就可以,这是为什么呢 wx.chooseImage({ count: 1, sourceType: ['album'], //如果此处写成sourceType: ['album','camera'],就可以调起 success: function (res) { }, fail: function (err) { } })
2018-03-01 - 微信开发工具报错appServiceSDKScriptError
appServiceSDKScriptError Cannot set property 'updateTitle' of undefined;at api setNavigationBarTitle beforeAll callback function TypeError: Cannot set property 'updateTitle' of undefined
2019-04-24 - 小程序Websocket无法收取服务器消息
android手机下,onSocketError没有报错 ios下,onSocketError监听报如下错误 code: 1001 reason: "Stream end encountered" 微信开发者工具中Websocket以及网页websocket连接服务器均正常,help help help
2017-09-22 - 小程序Websocket iOS Stream end encountered
小程序长连接在开发工具上可以收发,在iOS真机上一直连接不上,报reason:Stream end encountered。求解
2018-10-18