- 当前 Bug 的表现(可附上截图)
textarea输入一些字,点击输入法的删除,一下把内容全部删了
手机型号:huawei SLA-AL00
EMUI版本:5.1.1
Android版本:7.0
- 预期表现
只删除一个字
- 复现路径
无
- 提供一个最简复现 Demo
wxml:
<textarea adjust-position cursor-spacing="150" class="i-textarea" value="{{note}}" bindinput="bindContentInputChange" placeholder-style="color: #ccc; font-size: 28rpx;" />
wxs:
bindContentInputChange(e) {
this.setData({note: e.detail.value})
},
改成bindContentInputChange(e){this.data.note = e.detail.value}; 其实就可以了,基本无影响.
其实我用的wepy框架就是你上面的写法,不行