Trong javascript tôi đã tính một số. Mà tôi muốn hiển thị như một mức giá.
Tệp tin của tôi
define([
'jquery'
], function ($) {
"use strict";
function irreleventCalculations() {
// black magic here
return 19.949999;
}
var price = irrelevenCalculation();
jQuery('#myCustomPriceDiv').text(formatedPrice);
return $;
});
Làm thế nào tôi nên làm điều này trong Magento 2?
Bạn có thể vui lòng chia sẻ mã của bạn?
—
Amit Bera
thử sử dụng
—
Renon Stewart
.toFixed(2)
phương pháp. Tức làformatedPrice = price.toFixed(2)
@RS Tôi muốn nó định dạng giá theo cài đặt. Vì vậy, biểu tượng chính xác và một số quốc gia có nhiều hơn hai phao
—
janw