JavaScriptで数値を計算しました。価格として表示したいもの。
私のJSファイル
define([
'jquery'
], function ($) {
"use strict";
function irreleventCalculations() {
// black magic here
return 19.949999;
}
var price = irrelevenCalculation();
jQuery('#myCustomPriceDiv').text(formatedPrice);
return $;
});
Magento 2ではどのようにすればよいですか?
コードを共有していただけますか?
—
アミットベラ
.toFixed(2)
メソッドを使用してみてください。IeformatedPrice = price.toFixed(2)
@RS設定に応じて価格をフォーマットします。正しいシンボルといくつかの国では、3つ以上の山車持っているので、
—
janw