আমি প্রসারিত করতে প্রয়োজন Magento_Catalog/js/price-box.js
। আমি 'মিক্সিন' বৈশিষ্ট্যটি ব্যবহার করেছি, তবে এটি কাজ করছে না price-box.js
।
requirejs-config.js
:
var config = {
config: {
mixins: {
'Magento_Catalog/js/price-box': {
'My_Module/js/price-box/pluggin': true
}
}
}
};
My_Module/view/frontend/web/js/price-box/pluggin.js
define(function () {
'use strict';
return function (target) {
// modify target
var reloadPrice = target.reloadPrice;
target.reloadPrice = function() {
cosole.log("hello");
};
return target;
};
});
যোগেশ, এ সম্পর্কে আরও কিছু তথ্য দিন।
—
কোড্রেন টেকনোলবস প্রাইভেট লিমিটেড