web-dev-qa-db-ja.com

Vueコンポーネントで通貨をフォーマットするにはどうすればよいですか?

私のVueコンポーネントは次のようなものです:

<template>
    <div>
        <div class="panel-group"v-for="item in list">
            <div class="col-md-8">
                <small>
                   Total: <b>{{ item.total }}</b>
                </small>
            </div>
        </div>
    </div>
</template>

<script>
    export default {
        ...
        computed: {
            list: function() {
                return this.$store.state.transaction.list
            },
            ...
        }
    }
</script>

{{ item.total }}の結果は

26000000

しかし、私はそれをこのようにフォーマットしたい:

26.000.000,00

Jqueryまたはjavascriptで、私はそれを行うことができます

しかし、vueコンポーネントでそれを行う方法は?

50
samuel toh

更新:@Jessが提供するフィルター付きソリューションを使用することをお勧めします。

そのためのメソッドを作成し、価格をフォーマットする必要がある場合は、テンプレートにメソッドを入れて値を渡すことができます

methods: {
    formatPrice(value) {
        let val = (value/1).toFixed(2).replace('.', ',')
        return val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".")
    }
}

そして、テンプレートで:

<template>
    <div>
        <div class="panel-group"v-for="item in list">
            <div class="col-md-8">
                <small>
                   Total: <b>{{ formatPrice(item.total) }}</b>
                </small>
            </div>
        </div>
    </div>
</template>

ところで-私は置換と正規表現にあまり注意を払わなかった。

56
Belmin Bedak

フィルターを作成しました。フィルターはどのページでも使用できます。

Vue.filter('toCurrency', function (value) {
    if (typeof value !== "number") {
        return value;
    }
    var formatter = new Intl.NumberFormat('en-US', {
        style: 'currency',
        currency: 'USD',
        minimumFractionDigits: 0
    });
    return formatter.format(value);
});

次に、このフィルターを次のように使用できます。

        <td class="text-right">
            {{ invoice.fees | toCurrency}}
        </td>

これらの関連する回答を使用して、フィルターの実装を支援しました。

104
Jess

Vuejs 2では、他にも便利なvue2-filtersを使用できます。

npm install vue2-filters


import Vue from 'vue'
import Vue2Filters from 'vue2-filters'

Vue.use(Vue2Filters)

その後、次のように使用します。

{{ amount | currency }} // 12345 => $12,345.00

参照: https://www.npmjs.com/package/vue2-filters

13
Yao Liu

独自のコードを記述して通貨をフォーマットすることはできますが、それは現時点では単なる解決策です。アプリが成長する場合、他の通貨が必要になる場合があります。

これには別の問題があります:

  1. EN-usの場合、Dolarサインは常に通貨の前にあります-$ 2.00、
  2. 選択したPLの場合、2,00złのような量の後に符号を返します。

最良のオプションは、国際化のために複雑なソリューションを使用することだと思います。ライブラリvue-i18n( http://kazupon.github.io/vue-i18n/ )。

私はこのプラグインを使用していますが、そのようなことを心配する必要はありません。ドキュメントを見てください-それは本当に簡単です:

http://kazupon.github.io/vue-i18n/guide/number.html

あなただけを使用します:

<div id="app">
  <p>{{ $n(100, 'currency') }}</p>
</div>

eN-usを設定して$ 100.00を取得します:

<div id="app">
  <p>$100.00</p>
</div>

または、PLを取得するように設定100,00zł

<div id="app">
  <p>100,00 zł</p>
</div>

このプラグインは、翻訳や日付の書式設定などのさまざまな機能も提供します。

9
Arkowsky

@RoyJのコメントには素晴らしい提案があります。テンプレートでは、組み込みのローカライズされた文字列を使用できます。

<small>
     Total: <b>{{ item.total.toLocaleString() }}</b>
</small>

一部の古いブラウザではサポートされていませんが、IE 11以降をターゲットにしている場合は問題ありません。

8
AaronBaker

受け入れられた回答の精度に問題があります。

このテストのround(value、decimals)関数は動作します。単純な修正された例とは異なります。

これは、toFixed vs Roundメソッドのテストです。

http://www.jacklmoore.com/notes/rounding-in-javascript/

  Number.prototype.format = function(n) {
      return this.toFixed(Math.max(0, ~~n));
  };
  function round(value, decimals) {
    return Number(Math.round(value+'e'+decimals)+'e-'+decimals);
  }

  // can anyone tell me why these are equivalent for  50.005, and 1050.005 through 8150.005 (increments of 50)

  var round_to = 2;
  var maxInt = 1500000;
  var equalRound = '<h1>BEGIN HERE</h1><div class="matches">';
  var increment = 50;
  var round_from = 0.005;
  var expected = 0.01;
  var lastWasMatch = true;

  for( var n = 0; n < maxInt; n=n+increment){
    var data = {};
    var numberCheck = parseFloat(n + round_from);
    data.original = numberCheck * 1;
    data.expected =  Number(n + expected) * 1;
    data.formatIt = Number(numberCheck).format(round_to) * 1;
    data.roundIt = round(numberCheck, round_to).toFixed(round_to) * 1;
    data.numberIt = Number(numberCheck).toFixed(round_to) * 1;
    //console.log(data);

    if( data.roundIt !== data.formatIt || data.formatIt !== data.numberIt ||
       data.roundIt !== data.numberIt || data.roundIt != data.expected
      ){
        if(lastWasMatch){
          equalRound = equalRound + '</div><div class="errors"> <hr/> Did Not Round UP <hr/>' ;
            document.write(' <h3>EXAMPLE: Did Not Round UP: ' + numberCheck + '</h3><br /><hr/> ');
            document.write('expected: '+data.expected + ' :: ' + (typeof data.expected)  + '<br />');
            document.write('format: '+data.formatIt + ' :: ' + (typeof data.formatIt)  + '<br />');
            document.write('round : '+data.roundIt + ' :: ' + (typeof data.roundIt)  + '<br />');
            document.write('number: '+data.numberIt + ' :: ' + (typeof data.numberIt)  + '<br />');
            lastWasMatch=false;
        }
        equalRound = equalRound + ', ' + numberCheck;
    } else {
        if(!lastWasMatch){
          equalRound = equalRound + '</div><div class="matches"> <hr/> All Rounded UP! <hr/>' ;
        } {
            lastWasMatch=true;
        }
        equalRound = equalRound + ', ' + numberCheck;
    }
  }
  document.write('equalRound: '+equalRound + '</div><br />');

ミックスインの例

  export default {
    methods: {
      roundFormat: function (value, decimals) {
        return Number(Math.round(value+'e'+decimals)+'e-'+decimals).toFixed(decimals);
      },
      currencyFormat: function (value, decimals, symbol='$') {
        return symbol + this.roundFormat(value,2);
      }
    }
  }
1
Artistan