1

这是 Magento 2.1.8 的自定义模块,其想法是通过管理面板控制嵌入 youtube 视频的 iframe。基本上允许 - 全屏,控件,自动播放等..

我希望这个模板加载到我网站上的每个可能页面上

毕竟这些:

magento setup:upgrade
magento setup:di:compile
magento setup:static-content:deploy
magento cache:clean
magento cache:flush
magento indexer:reindex

我有layouts/default.xml

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceContainer name="after.body.start">
            <block class="Magento\Framework\View\Element\Template" template="Mycompany_YouTube::youtube_configuration.phtml" name="mycompany.youtube.configuration" after="-" />
        </referenceContainer>
    </body>
</page>

模板/youtube_configuration.phtml

<?php

$config = [
        'youtube_config' => [
                "_force" => $this->helper('Mycompany\\Youtube\\Helper\\Data')->getConfig('youtube/general/_force'),
                "rel" => $this->helper('Mycompany\\Youtube\\Helper\\Data')->getConfig('youtube/general/rel'),
                "fs" => $this->helper('Mycompany\\Youtube\\Helper\\Data')->getConfig('youtube/general/fs'),
                "loop" => $this->helper('Mycompany\\Youtube\\Helper\\Data')->getConfig('youtube/general/loop'),
                "autoplay" => $this->helper('Mycompany\\Youtube\\Helper\\Data')->getConfig('youtube/general/autoplay'),
                "controls" => $this->helper('Mycompany\\Youtube\\Helper\\Data')->getConfig('youtube/general/controls'),
        ]
];

?>

<div id="Mycompany_YouTube" data-mage-init="<?= json_encode($config) ?>">
 <script type="text/javascript">
    console.log("Mycompany_YouTube Loaded!");
    define(["jquery"], function($) {
        "use strict";
        return function(config) {
            var params = config.youtube_config;

            if (params._force) {
                delete params._force;
                $('iframe[src*="youtube.com/embed"]').each(function(k,v) {
                   "mycompany";
                    var url = document.createElement('a');url.href = v.src;
                    url.search = $.param(params);
                    $(v).prop('src', url.href)
                });
            }
        }
    });
 </script>
</div>

模板没有加载任何内容...

笔记:使用 Magento 2.1.8 (别无选择,这是我目前唯一可以使用的,不要问为什么)

我也处于开发者模式

此外,我只有Magento的前端有问题。管理面板已完成并正在工作。

另请记住,我正在使用以下树创建它:

/
|---/app
| |---/code
| | |---/Mycompany
| | | |---/YouTube
| | | | |---registration.php
| | | | |---/etc
| | | | | |---module.xml
| | | | | |---/adminhtml
| | | | | | |---config.xml
| | | | | | |---system.xml
| | | | |---/Helper
| | | | | |---Data.php
| | | | |---/view
| | | | | |---/frontend
| | | | | | |---requirejs-config.js
| | | | | | |---/layout
| | | | | | | |---default.xml
| | | | | | |---/templates
| | | | | | | |---youtube_configuration.phtml

我需要的最低结果是,当我刷新页面时,我可以在 Inspector 中看到来自模板的代码。

4

1 回答 1

0

问题是我没有包含 PSR-4 Autoloader 的 composer.json。

于 2019-05-16T10:06:54.210 回答