a-input-number 精确到小数点后6位

Posted 晚星@

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了a-input-number 精确到小数点后6位相关的知识,希望对你有一定的参考价值。

使用正则过滤的方式,来达到你想要的小数点后几位的实现

 <a-input-number suffix="(元)"
                            :min="0"
                            :step="0.000001"
                            @keydown="handleNumberInput"
                            v-model="projectProjectExpensesDTO.fundOne"
                            style="width:80%"
                            placeholder="请输入" />
methods:
	handleNumberInput (e) 
      // 通过正则过滤小数点后两位
      e.target.value = e.target.value.match(/^\\d*(\\.?\\d0,5)/g)[0] || null;
    ,

以上是关于a-input-number 精确到小数点后6位的主要内容,如果未能解决你的问题,请参考以下文章

工具类-java精确到小数点后6位

使用 timeIntervalSince1970 转换时,如何使 fileCreationDate 精确到小数点后 6 位?

C语言里,double类型的数据可以精确到小数点后几位?

精确到小数点后面六位与保留六位有效数字是不是相同

oracle 存储日期精确到哪位

精度浮点型数据精确到了几位小数呢?