我々は持っています swatch-renderer.js
このファイルには、いくつかのウィジェットがあります。
....
$.widget('mage.SwatchRenderer', {
....
/**
* @private
*/
_init: function () {
if (this.options.jsonConfig !== '' && this.options.jsonSwatchConfig !== '') {
this._sortAttributes();
this._RenderControls();
} else {
console.log('SwatchRenderer: No input data received');
}
},
/**
* @private
*/
_sortAttributes: function () {
this.options.jsonConfig.attributes = _.sortBy(this.options.jsonConfig.attributes, function (attribute) {
return attribute.position;
});
},
その機能のいくつかを書き直したいと思います。
それを行う適切な方法は何ですか?
magentoライブラリの説明はもう実際のものではなく、別のアプローチを使用しているクラスにリンクされています(place-order.js / place-order-mixin.jsについて話している)。また、説明されている例では、ウィジェット関数を書き換える方法については何とか説明していません。