In Javascript habe ich eine Zahl berechnet. Was ich als Preis anzeigen möchte.
Meine JS-Datei
define([
'jquery'
], function ($) {
"use strict";
function irreleventCalculations() {
// black magic here
return 19.949999;
}
var price = irrelevenCalculation();
jQuery('#myCustomPriceDiv').text(formatedPrice);
return $;
});
Wie soll ich das in Magento 2 machen?
magento2
price
javascript
janw
quelle
quelle
.toFixed(2)
Methode. DhformatedPrice = price.toFixed(2)
Antworten:
Schauen Sie sich Versand_Methode / Preis.js an
quelle
Uncaught TypeError: Cannot read property 'quoteData' of undefined at quote.js:13
Basierend auf der Antwort von RS
quelle