开头由于介绍文案很多,所以产品想要分两个对话框装,有这种配置吗
微信对话平台一问多答,分段式的回答可以吗?微信对话平台一问多答,分段式的回答可以吗?不是那种多个回答集合在一个聊天框的那种,而是下面这种分开来的 如 [图片]
2022-12-20占坑,有解决方案吗
textarea的maxlength最大值被触发时内容变化但是没有触发bindinput事件https://developers.weixin.qq.com/miniprogram/dev/component/textarea.html textarea的maxlength最大值被触发时内容变化但是没有触发bindinput事件 例如:maxlength="10",输入到8个字符时,再一次输入3个字,这时显示了10个字,内容变了没有触发bindinput事件,且用e.detail.value能读取到11个字
2022-10-28占个坑,依然存在
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)) } }, 测试结果如图: [图片]
2022-10-28应该有大佬碰到过这种问题把
在ios企业微信调用微信步数会自动跳转到微信,微信在自动跳转回企业微信,导致无限循环[图片]ios手机的企业微信调用获取微信步数wx.getWeRunData的API会造成这样的结果,无线循环,目前有解决办法嘛
2021-06-16