QML 中實(shí)現(xiàn)類似 Intl.NumberFormat 的功能

Intl.NumberFormat 是 JS 中對(duì)語(yǔ)言敏感的格式化數(shù)字類的構(gòu)造器類,JS 的語(yǔ)法:

new Intl.NumberFormat([locales[, options]])
Intl.NumberFormat.call(this[, locales[, options]])

QML 中是沒(méi)有 Intl 的,但是 QML 提供了 locale 方法:

    function format(number) {
        return Number(number).toLocaleString(Qt.locale("en_US"));
    }

下面是一段測(cè)試代碼:

import QtQuick 2.12
import QtQuick.Window 2.12

Window {
    visible: true
    width: 1000
    height: 400
    color: "white"
    title: "Test format number"

    function format(number) {
        return Number(number).toLocaleString(Qt.locale("en_US"));
    }

    Component.onCompleted: {
        console.log("ZDS==========", format(12.343))
        console.log("ZDS==========", format(12.345))
    }
}

輸出結(jié)果:

qml: ZDS========== 12.34
qml: ZDS========== 12.35

可以看到是符合預(yù)期的。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容