y***@163.com
y***@163.com
  • 发布:2024-08-15 14:33
  • 更新:2024-10-24 19:52
  • 阅读:237

【报Bug】input设置maxlength, 粘贴文本不触发@input事件和v-model绑定变量的监听

分类:uni小程序sdk

产品分类: uni小程序SDK

手机系统: 全部

手机厂商: 华为

页面类型: vue

SDK版本号: 3.8.12.20230817

测试过的手机:

iPhone 12, oneplus 9

示例代码:

<input class="container-code-container-code" :class="getFocusClass" type="number" maxlength="1"
@focus="inputDidFocus" :focus="getFocus" v-model="data.code" @input="inputDidChanged">

/
输入框内容发生改变
event: 事件
/
const inputDidChanged = (event : any) => {
console.log('=========', event.detail.value);
}

操作步骤:

必现

预期结果:

粘贴文本可以触发@input事件, 能使用watch监听v-model绑定变量变化事件

实际结果:

如题

bug描述:

如题

2024-08-15 14:33 负责人:无 分享
已邀请:

最佳回复

DCloud

DCloud

HBuilderX 4.31.2024102414-alpha 已修复。

BFC

BFC

你好,不用小程序sdk,直接用hbuilderx 运行到Android App基座是否正常

  • y***@163.com (作者)

    没理解, 不用小程序SDK怎么才能运行到模拟器上

    2024-08-16 11:37

  • BFC

    回复 y***@163.com: 直接用hbuilderx 运行到Android App基座 试试呢

    2024-08-16 11:53

  • y***@163.com (作者)

    回复 BFC: 同样有问题

    2024-08-16 14:16

  • BFC

    回复 y***@163.com: 发一下可复现的demo 工程, 我验证一下

    2024-08-16 14:20

  • y***@163.com (作者)

    回复 BFC:


    <template>

    <view>

    <div class="container">

    <div class="container-code-container">

    <input class="container-code-container-code" :class="getFocusClass" type="number" maxlength="1"

    @focus="inputDidFocus" :focus="getFocus" v-model="code" @input="inputDidChanged">

    </div>

    </div>

    </view>

    </template>


    <script setup lang="ts">

    import { computed, onMounted, onUnmounted, ref, watch } from "vue";


    let code = ref('')  

    /* 焦点输入框 */
    let selectedInput = ref<number | null>(null)

    /* 自动获取焦点逻辑 */
    const getFocus = computed(() => {
    return true
    })

    /* 焦点输入框样式 */
    const getFocusClass = computed(() => {
    return "check-code-focus"
    })

    onMounted(() => {
    // #ifdef APP
    registerKeyboardListener()
    // #endif
    })

    onUnmounted(() => {
    unRegisterKeyboardListener()
    })

    /* 键盘高度变化回调函数 */
    const keyboardHeightDidChanged = (result : UniNamespace.OnKeyboardHeightChangeResult) => {
    if (result.height < 10) {
    selectedInput.value = null
    }
    }

    /* 注册键盘高度监听 */
    const registerKeyboardListener = () => {
    uni.onKeyboardHeightChange(keyboardHeightDidChanged)
    }

    /* 卸载键盘高度监听 */
    const unRegisterKeyboardListener = () => {
    uni.offKeyboardHeightChange(keyboardHeightDidChanged)
    }

    /* 输入框获得焦点 */
    const inputDidFocus = () => {
    selectedInput.value = 0
    }

    /*
    输入框内容发生改变
    event: 事件
    */
    const inputDidChanged = (event : any) => {
    console.log('@input =============', event.detail.value.trim());
    }

    /*
    watch
    */
    watch(code, (newValue) => {
    console.log('watch =============', newValue);
    })

    </script>


    <style lang="scss" scoped>

    .container {

    padding: 140rpx 40rpx;


        &-title {  
    font-size: 50rpx;
    }

    &-subtitle {
    margin: 10rpx 0 40rpx;
    font-size: 28rpx;
    color: #888;
    }

    &-code-container {
    margin-top: 100rpx;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    &-code {
    width: 84rpx;
    height: 112rpx;
    border: #888 solid 1rpx;
    font-size: 50rpx;
    text-align: center;
    }
    }

    &-button {
    margin-top: 120rpx;
    }
    }

    .check-code-focus {
    border: #519efb solid 1rpx;
    }

    </style>

    2024-08-16 15:24

  • y***@163.com (作者)

    回复 BFC: 你好, 有进展吗

    2024-08-29 15:03

  • BFC

    回复 y***@163.com: 收到,我验证一下

    2024-08-29 15:23

BFC

BFC

bug已确认,感谢反馈,已加分。下个版本修复

BFC

BFC

临时解决方案, 设置maxLength = -1,手动截取长度一下吧。

要回复问题请先登录注册