Щоб завантажити спеціальний main.js
файл на всі сторінки (у спосіб RequireJS), це хороший спосіб:
1) Створіть main.js
Створіть main.js
у темі теми
<theme_dir>/web/js/main.js
з цим вмістом:
define([
"jquery"
],
function($) {
"use strict";
// Here your custom code...
console.log('Hola');
});
Коротше кажучи : ми оголошуємо залежності на початку, наприклад "jquery"
. Ми визначаємо як параметр функції ім'я змінної для використання залежності в межах функції, наприклад "jquery" --> $
. Ми ставимо все наший спеціальний код всередині function($) { ... }
.
2) Оголосити main.js
з requirejs-config.js
файлом
Створіть requirejs-config.js
файл у папці теми:
<theme_dir>/requirejs-config.js
з цим вмістом:
var config = {
// When load 'requirejs' always load the following files also
deps: [
"js/main"
]
};
"js/main"
це шлях до нашого звичаю main.js
. Розширення ".js" не потрібно.
Наші requirejs-config.js
будуть об'єднані з іншими requirejs-config.js
визначеними в Magento.
RequireJS завантажить наш main.js
файл на кожну сторінку, вирішуючи залежності та завантажуючи файли асинхронним способом.
Необов’язково: включаючи сторонні бібліотеки
Це спосіб включення сторонніх бібліотек.
1) Додайте бібліотеку до web/js
:
<theme_dir>/web/js/vendor/jquery/slick.min.js
2) Відкрийте requirejs-config.js
та додайте цей вміст:
var config = {
deps: [
"js/main"
],
// Paths defines associations from library name (used to include the library,
// for example when using "define") and the library file path.
paths: {
'slick': 'js/vendor/jquery/slick.min',
},
// Shim: when you're loading your dependencies, requirejs loads them all
// concurrently. You need to set up a shim to tell requirejs that the library
// (e.g. a jQuery plugin) depends on another already being loaded (e.g. depends
// on jQuery).
// Exports: if the library is not AMD aware, you need to tell requirejs what
// to look for so it knows the script has loaded correctly. You can do this with an
// "exports" entry in your shim. The value must be a variable defined within
// the library.
shim: {
'slick': {
deps: ['jquery'],
exports: 'jQuery.fn.slick',
}
}
};
Це виглядає складніше, ніж є насправді.
3) Додайте залежність у межах main.js
:
define([
'jquery',
'slick'
],
function($) {
// ...
});