私は拡張する必要があります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;
};
});
Yogesh、これについてもう少し情報を提供してください。
—
Codrain Technolabs Pvt Ltd