연장해야합니다 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