输入框bindInput未正常触发
在安卓8.0环境下使用手写输入法在手写完成后不点击输入板直接点击页面元素不触发bindInput事件
wxml:
<input placeholder=“请输入姓名” class=‘label border’ bindinput=“setFullName” auto-focus/>
js:
function (e) {
this.data.user.FULL_NAME = e.detail.value;
console.log(this.data.user.FULL_NAME);
}