有兩種方法來包括在Magento 2從模板的javascript:在<script type="text/x-magento-init">
和data-mage-init
屬性。不管哪一種方式,能夠用於將數據傳遞到JSON定義範圍內的腳本。例如,使用X-Magento的-的init腳本標籤,在模板有:javascript
<script type="text/x-magento-init"> { "*": { "js/example": { "a": "<?php echo 'Hello from template' ?>" } } } </script>
而在JS文件,你必須:php
define([ 'jquery' ], function ($) { 'use strict'; return function (config) { console.log(config); // will output {a: "Hello from template"} alert(config.a); // would be equal to alert("Hello from template"); } });