dcloudio / uni-app

A cross-platform framework using Vue.js
https://uniapp.dcloud.io
Apache License 2.0
40.08k stars 3.64k forks source link

easyinput的type设置为number,会出现数据获取异常问题 #5064

Open Hyachin opened 3 months ago

Hyachin commented 3 months ago

代码如下,我在页面上先输入56,再在5和6中间加了小数点,之后点的保存,页面上输入框直接没有数据了,打印出来的也是56。

<template>
    <view class="content">
        <uni-easyinput v-model="textword" type="number"></uni-easyinput>
        <button @click="save">保存</button>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                textword: '',
            }
        },
        methods: {
            save() {
                console.log('this.textword', this.textword)
            }
        }
    }
</script>
StrivingRabbit commented 3 months ago

使用的 cli 还是 hx创建的项目?是什么版本?