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 = _.sortBy(this.options.jsonConfig.attributes, function (attribute) { …