Magento_Catalog/js/price-box.js
ฉันต้องการที่จะขยาย ฉันได้ใช้คุณลักษณะ 'mixins' 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;
};
});
Yogesh ให้ข้อมูลเพิ่มเติมเกี่ยวกับเรื่องนี้
—
Codrain Technolabs Pvt Ltd