2
mixins Magento 2.1.1로 위젯 기능을 다시 쓰는 방법
우리는 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 …