SlideShare a Scribd company logo
Include JavaScript
Подгрузка js в Magento 2
==
1
<script>
require(['jquery'], function ($) {
'use strict';
console.log('Hey Require !!!');
});
</script>
2
define(['jquery'], function ($) {
'use strict';
return function (config, element) {
let name = $(‘#name’).val();
console.log(name);
}
});
Vendor_Module/js/exapmle.jsPlain Module
3
<div class="block-content" aria-labelledby="block-new-customer-heading">
<p><?= $block->escapeHtml(__('Creating an account has many benefits: check out faster, keep more than one
address, track orders and more.')) ?></p>
<div class="actions-toolbar">
<div class="primary">
<a href="<?= $block->escapeUrl($block->getCreateAccountUrl()) ?>" class="action create
primary"><span><?= $block->escapeHtml(__('Create an Account')) ?></span></a>
</div>
</div>
</div>
</div>
<script type="text/x-magento-init">
{
"*":
{
"Vendor_Module/js/example": {}
}
}
</script>
4
Widget
Pass Arguments
<script type="text/x-magento-init">
{
"*":
{
"Vendor_Module/js/cart/update": {
"id":"<?= $_item->getId() ?>"
}
}
}
</script>
define(['jquery'], function($) {
'use strict';
$.widget(vendor.cart', {
_create: function() {
this._bind();
},
_bind: function() {
var qty = $('#cart-'+ this.options.id +'-qty');
}
});
return $.vendor.cart;
});
Vendor_Module/js/cart/update.js
template.phtml
6
Ui Components
<script type="text/x-magento-init">
{
"*": {
"Magento_Ui/js/core/app": {
"components": {
"customer": {
"component": "Vendor_Module/js/view/customer"
}
}
}
}
}
</script>
template.phtml
7
define([
'uiComponent',
'Magento_Customer/js/customer-data'
], function (Component, customerData) {
'use strict';
return Component.extend({
initialize: function () {
this._super();
console.log(‘I am uiComponent’)
}
});
});
Vendor_Module/js/view/customer.js
8
Magento2&amp;java script (2)
<script type="text/x-magento-init">
{
"*":
{
"Vendor_Module/js/example": {}
}
}
</script>
template.phtml
Vendor_Module/js/exapmle.jsrequire([], function ($) {
'use strict';
return function (config, element) {
let name = $(‘#name’).val();
console.log(name);
}
});
reqire()define()
<script type="text/x-magento-init">
1. Plain Module
2. jQuery Widgets
3. Ui Components
The End.
Источники:
https://devdocs.magento.com/guides/v2.3/ui_comp_guide/bk-ui_comps.html
https://devdocs.magento.com/guides/v2.3/javascript-dev-guide/javascript/js_init.html
Ad

Recommended

jQuery secrets
jQuery secrets
Bastian Feder
 
Going with style: Themes and apps for Magento Go
Going with style: Themes and apps for Magento Go
X.commerce
 
Introducing jQuery
Introducing jQuery
Wildan Maulana
 
Magento Dependency Injection
Magento Dependency Injection
Anton Kril
 
Mysocial databasequeries
Mysocial databasequeries
Program in Interdisciplinary Computing
 
Mysocial databasequeries
Mysocial databasequeries
Program in Interdisciplinary Computing
 
Why You Shouldn't Write OO
Why You Shouldn't Write OO
Yehuda Katz
 
Special Events: Beyond Custom Events
Special Events: Beyond Custom Events
Brandon Aaron
 
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
Darren Mothersele
 
javascript code for mysql database connection
javascript code for mysql database connection
Hitesh Kumar Markam
 
Codigo player 3
Codigo player 3
DouglasWallZ
 
Nuxeo - OpenSocial
Nuxeo - OpenSocial
Thomas Roger
 
Odoo Experience 2018 - Develop an App with the Odoo Framework
Odoo Experience 2018 - Develop an App with the Odoo Framework
ElínAnna Jónasdóttir
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" Domino
Rob Bontekoe
 
Jquery Basics
Jquery Basics
Umeshwaran V
 
"Auth for React.js APP", Nikita Galkin
"Auth for React.js APP", Nikita Galkin
Fwdays
 
FP512 Cookies sessions
FP512 Cookies sessions
Fatin Fatihayah
 
Java script cookies
Java script cookies
AbhishekMondal42
 
Tag Joz
Tag Joz
Ai Tsf
 
Backbone.js
Backbone.js
Knoldus Inc.
 
React.js 20150828
React.js 20150828
LearningTech
 
Growing jQuery
Growing jQuery
gueste8d8bc
 
Bacbkone js
Bacbkone js
Артём Курапов
 
Rails, Postgres, Angular, and Bootstrap: The Power Stack
Rails, Postgres, Angular, and Bootstrap: The Power Stack
David Copeland
 
与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库
YUCHENG HU
 
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios
 
Dundee University HackU 2013 - Mojito
Dundee University HackU 2013 - Mojito
smartads
 
Eu odeio OpenSocial
Eu odeio OpenSocial
Carlos Brando
 
jQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a Tree
adamlogic
 
Unit – II (1).pptx
Unit – II (1).pptx
DrDhivyaaCRAssistant
 

More Related Content

What's hot (20)

jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
Darren Mothersele
 
javascript code for mysql database connection
javascript code for mysql database connection
Hitesh Kumar Markam
 
Codigo player 3
Codigo player 3
DouglasWallZ
 
Nuxeo - OpenSocial
Nuxeo - OpenSocial
Thomas Roger
 
Odoo Experience 2018 - Develop an App with the Odoo Framework
Odoo Experience 2018 - Develop an App with the Odoo Framework
ElínAnna Jónasdóttir
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" Domino
Rob Bontekoe
 
Jquery Basics
Jquery Basics
Umeshwaran V
 
"Auth for React.js APP", Nikita Galkin
"Auth for React.js APP", Nikita Galkin
Fwdays
 
FP512 Cookies sessions
FP512 Cookies sessions
Fatin Fatihayah
 
Java script cookies
Java script cookies
AbhishekMondal42
 
Tag Joz
Tag Joz
Ai Tsf
 
Backbone.js
Backbone.js
Knoldus Inc.
 
React.js 20150828
React.js 20150828
LearningTech
 
Growing jQuery
Growing jQuery
gueste8d8bc
 
Bacbkone js
Bacbkone js
Артём Курапов
 
Rails, Postgres, Angular, and Bootstrap: The Power Stack
Rails, Postgres, Angular, and Bootstrap: The Power Stack
David Copeland
 
与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库
YUCHENG HU
 
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios
 
Dundee University HackU 2013 - Mojito
Dundee University HackU 2013 - Mojito
smartads
 
Eu odeio OpenSocial
Eu odeio OpenSocial
Carlos Brando
 
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
jQuery UI Widgets, Drag and Drop, Drupal 7 Javascript
Darren Mothersele
 
javascript code for mysql database connection
javascript code for mysql database connection
Hitesh Kumar Markam
 
Nuxeo - OpenSocial
Nuxeo - OpenSocial
Thomas Roger
 
Odoo Experience 2018 - Develop an App with the Odoo Framework
Odoo Experience 2018 - Develop an App with the Odoo Framework
ElínAnna Jónasdóttir
 
Building iPhone Web Apps using "classic" Domino
Building iPhone Web Apps using "classic" Domino
Rob Bontekoe
 
"Auth for React.js APP", Nikita Galkin
"Auth for React.js APP", Nikita Galkin
Fwdays
 
Tag Joz
Tag Joz
Ai Tsf
 
Rails, Postgres, Angular, and Bootstrap: The Power Stack
Rails, Postgres, Angular, and Bootstrap: The Power Stack
David Copeland
 
与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库
YUCHENG HU
 
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios Conference 2014 - Troy Lea - JavaScript and jQuery - Nagios XI Tips, T...
Nagios
 
Dundee University HackU 2013 - Mojito
Dundee University HackU 2013 - Mojito
smartads
 

Similar to Magento2&amp;java script (2) (20)

jQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a Tree
adamlogic
 
Unit – II (1).pptx
Unit – II (1).pptx
DrDhivyaaCRAssistant
 
Virtual Madness @ Etsy
Virtual Madness @ Etsy
Nishan Subedi
 
Javatwo2012 java frameworkcomparison
Javatwo2012 java frameworkcomparison
Jini Lee
 
Анатолий Поляков - Drupal.ajax framework from a to z
Анатолий Поляков - Drupal.ajax framework from a to z
LEDC 2016
 
Form demoinplaywithmysql
Form demoinplaywithmysql
Knoldus Inc.
 
Testable, Object-Oriented JavaScript
Testable, Object-Oriented JavaScript
Jon Kruger
 
Improving state of M2 front-end - Magento 2 Community Project
Improving state of M2 front-end - Magento 2 Community Project
Bartek Igielski
 
PHP || [Student Result Management System]
PHP || [Student Result Management System]
Jiangxi University of Science and Technology (江西理工大学)
 
lec 14-15 Jquery_All About J-query_.pptx
lec 14-15 Jquery_All About J-query_.pptx
MuhammadAbubakar114879
 
Symfony2 from the Trenches
Symfony2 from the Trenches
Jonathan Wage
 
CGI::Prototype (NPW 2006)
CGI::Prototype (NPW 2006)
brian d foy
 
Add loop shortcode
Add loop shortcode
Peter Baylies
 
Creating a Simple PHP and MySQL-Based Login System
Creating a Simple PHP and MySQL-Based Login System
Azharul Haque Shohan
 
Symfony2 - from the trenches
Symfony2 - from the trenches
Lukas Smith
 
Get AngularJS Started!
Get AngularJS Started!
Dzmitry Ivashutsin
 
jQuery
jQuery
PumoTechnovation
 
WordPress as an application framework
WordPress as an application framework
Dustin Filippini
 
前后端mvc经验 - webrebuild 2011 session
前后端mvc经验 - webrebuild 2011 session
RANK LIU
 
J query training
J query training
FIS - Fidelity Information Services
 
jQuery and Rails, Sitting in a Tree
jQuery and Rails, Sitting in a Tree
adamlogic
 
Virtual Madness @ Etsy
Virtual Madness @ Etsy
Nishan Subedi
 
Javatwo2012 java frameworkcomparison
Javatwo2012 java frameworkcomparison
Jini Lee
 
Анатолий Поляков - Drupal.ajax framework from a to z
Анатолий Поляков - Drupal.ajax framework from a to z
LEDC 2016
 
Form demoinplaywithmysql
Form demoinplaywithmysql
Knoldus Inc.
 
Testable, Object-Oriented JavaScript
Testable, Object-Oriented JavaScript
Jon Kruger
 
Improving state of M2 front-end - Magento 2 Community Project
Improving state of M2 front-end - Magento 2 Community Project
Bartek Igielski
 
lec 14-15 Jquery_All About J-query_.pptx
lec 14-15 Jquery_All About J-query_.pptx
MuhammadAbubakar114879
 
Symfony2 from the Trenches
Symfony2 from the Trenches
Jonathan Wage
 
CGI::Prototype (NPW 2006)
CGI::Prototype (NPW 2006)
brian d foy
 
Creating a Simple PHP and MySQL-Based Login System
Creating a Simple PHP and MySQL-Based Login System
Azharul Haque Shohan
 
Symfony2 - from the trenches
Symfony2 - from the trenches
Lukas Smith
 
WordPress as an application framework
WordPress as an application framework
Dustin Filippini
 
前后端mvc经验 - webrebuild 2011 session
前后端mvc经验 - webrebuild 2011 session
RANK LIU
 
Ad

Recently uploaded (20)

ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
This is why students from these 44 institutions have not received National Se...
This is why students from these 44 institutions have not received National Se...
Kweku Zurek
 
Health Care Planning and Organization of Health Care at Various Levels – Unit...
Health Care Planning and Organization of Health Care at Various Levels – Unit...
RAKESH SAJJAN
 
How to Customize Quotation Layouts in Odoo 18
How to Customize Quotation Layouts in Odoo 18
Celine George
 
Assisting Individuals and Families to Promote and Maintain Health – Unit 7 | ...
Assisting Individuals and Families to Promote and Maintain Health – Unit 7 | ...
RAKESH SAJJAN
 
VCE Literature Section A Exam Response Guide
VCE Literature Section A Exam Response Guide
jpinnuck
 
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
jutaydeonne
 
Hurricane Helene Application Documents Checklists
Hurricane Helene Application Documents Checklists
Mebane Rash
 
Nutrition Assessment and Nutrition Education – Unit 4 | B.Sc Nursing 5th Seme...
Nutrition Assessment and Nutrition Education – Unit 4 | B.Sc Nursing 5th Seme...
RAKESH SAJJAN
 
Values Education 10 Quarter 1 Module .pptx
Values Education 10 Quarter 1 Module .pptx
JBPafin
 
How to Manage Different Customer Addresses in Odoo 18 Accounting
How to Manage Different Customer Addresses in Odoo 18 Accounting
Celine George
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
English 3 Quarter 1_LEwithLAS_Week 1.pdf
English 3 Quarter 1_LEwithLAS_Week 1.pdf
DeAsisAlyanajaneH
 
OBSESSIVE COMPULSIVE DISORDER.pptx IN 5TH SEMESTER B.SC NURSING, 2ND YEAR GNM...
OBSESSIVE COMPULSIVE DISORDER.pptx IN 5TH SEMESTER B.SC NURSING, 2ND YEAR GNM...
parmarjuli1412
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
Sourav Kr Podder
 
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
Kweku Zurek
 
LDMMIA Yoga S10 Free Workshop Grad Level
LDMMIA Yoga S10 Free Workshop Grad Level
LDM & Mia eStudios
 
Tanja Vujicic - PISA for Schools contact Info
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
LDMMIA Practitioner Student Reiki Yoga S2 Video PDF Without Yogi Goddess
LDMMIA Practitioner Student Reiki Yoga S2 Video PDF Without Yogi Goddess
LDM & Mia eStudios
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
This is why students from these 44 institutions have not received National Se...
This is why students from these 44 institutions have not received National Se...
Kweku Zurek
 
Health Care Planning and Organization of Health Care at Various Levels – Unit...
Health Care Planning and Organization of Health Care at Various Levels – Unit...
RAKESH SAJJAN
 
How to Customize Quotation Layouts in Odoo 18
How to Customize Quotation Layouts in Odoo 18
Celine George
 
Assisting Individuals and Families to Promote and Maintain Health – Unit 7 | ...
Assisting Individuals and Families to Promote and Maintain Health – Unit 7 | ...
RAKESH SAJJAN
 
VCE Literature Section A Exam Response Guide
VCE Literature Section A Exam Response Guide
jpinnuck
 
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
ENGLISH_Q1_W1 PowerPoint grade 3 quarter 1 week 1
jutaydeonne
 
Hurricane Helene Application Documents Checklists
Hurricane Helene Application Documents Checklists
Mebane Rash
 
Nutrition Assessment and Nutrition Education – Unit 4 | B.Sc Nursing 5th Seme...
Nutrition Assessment and Nutrition Education – Unit 4 | B.Sc Nursing 5th Seme...
RAKESH SAJJAN
 
Values Education 10 Quarter 1 Module .pptx
Values Education 10 Quarter 1 Module .pptx
JBPafin
 
How to Manage Different Customer Addresses in Odoo 18 Accounting
How to Manage Different Customer Addresses in Odoo 18 Accounting
Celine George
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
English 3 Quarter 1_LEwithLAS_Week 1.pdf
English 3 Quarter 1_LEwithLAS_Week 1.pdf
DeAsisAlyanajaneH
 
OBSESSIVE COMPULSIVE DISORDER.pptx IN 5TH SEMESTER B.SC NURSING, 2ND YEAR GNM...
OBSESSIVE COMPULSIVE DISORDER.pptx IN 5TH SEMESTER B.SC NURSING, 2ND YEAR GNM...
parmarjuli1412
 
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
LAZY SUNDAY QUIZ "A GENERAL QUIZ" JUNE 2025 SMC QUIZ CLUB, SILCHAR MEDICAL CO...
Ultimatewinner0342
 
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
SPENT QUIZ NQL JR FEST 5.0 BY SOURAV.pptx
Sourav Kr Podder
 
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
University of Ghana Cracks Down on Misconduct: Over 100 Students Sanctioned
Kweku Zurek
 
LDMMIA Yoga S10 Free Workshop Grad Level
LDMMIA Yoga S10 Free Workshop Grad Level
LDM & Mia eStudios
 
Tanja Vujicic - PISA for Schools contact Info
Tanja Vujicic - PISA for Schools contact Info
EduSkills OECD
 
LDMMIA Practitioner Student Reiki Yoga S2 Video PDF Without Yogi Goddess
LDMMIA Practitioner Student Reiki Yoga S2 Video PDF Without Yogi Goddess
LDM & Mia eStudios
 
Ad

Magento2&amp;java script (2)