获取基础 URL 和当前 URL

如何获取 Magento 2 的基础 URL 和当前 URL 是 Mageplaza 教程的下个主题,让我们通过运行以下两个步骤的代码段来实现它。

在 Magento 2 获取基础 URL 和当前 URL :

  • 第一步:在 Mageplaza_HelloWorld 中声明

  • 第二步:获取模板(.phtml)文件中的当前URL和基础URL

  • 第三步:刷新缓存并检查结果

第一步:在 Mageplaza_HelloWorld 中声明

使用模块 Mageplaza_HelloWorld 中的块(block)类,然后向模块的块(block)类的构造函数中注入 StoreManagerInterface 和 UrlInterface 对象。使用以下类中的两个函数:getStoreManagerData() 和 getUrlInterfaceData() 。

  • 在 getStoreManagerData() 函数中,使用 StoreManagerInterface 对象获取基础 URL 和当前 URL。

  • 在 getUrlInterfaceData() 函数中,使用 UrlInterface 对象获取基础 URL 和当前 URL。

打开文件 app/code/Mageplaza/HelloWorld/Block/HelloWorld.php 并添加以下代码:

<?php
namespace Mageplaza\HelloWorld\Block;
class HelloWorld extends \Magento\Framework\View\Element\Template
{
        protected $_storeManager;
        protected $_urlInterface;
 
    public function __construct(
        \Magento\Backend\Block\Template\Context $context,        
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        \Magento\Framework\UrlInterface $urlInterface,    
        array $data = []
    )
    {        
        $this->_storeManager = $storeManager;
        $this->_urlInterface = $urlInterface;
        parent::__construct($context, $data);
    }
    
    public function _prepareLayout()
    {
        return parent::_prepareLayout();
    }
    
    /**
     * Prining URLs using StoreManagerInterface
     */
    public function getStoreManagerData()
    {    
        echo $this->_storeManager->getStore()->getId() . '<br />';
        
        // by default: URL_TYPE_LINK is returned
        echo $this->_storeManager->getStore()->getBaseUrl() . '<br />';        
        
        echo $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB) . '<br />';
        echo $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_DIRECT_LINK) . '<br />';
        echo $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA) . '<br />';
        echo $this->_storeManager->getStore()->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_STATIC) . '<br />';
        
        echo $this->_storeManager->getStore()->getUrl('product/33') . '<br />';
        
        echo $this->_storeManager->getStore()->getCurrentUrl(false) . '<br />';
            
        echo $this->_storeManager->getStore()->getBaseMediaDir() . '<br />';
            
        echo $this->_storeManager->getStore()->getBaseStaticDir() . '<br />';    
    }
    
    /**
     * Prining URLs using URLInterface
     */
    public function getUrlInterfaceData()
    {
        echo $this->_urlInterface->getCurrentUrl() . '<br />';
        
        echo $this->_urlInterface->getUrl() . '<br />';
        
        echo $this->_urlInterface->getUrl('helloworld/general/enabled') . '<br />';
        
        echo $this->_urlInterface->getBaseUrl() . '<br />';
    }
    
}
?>

查看更多函数:

– MAGENTO_ROOT/vendor/magento/module-store/Model/Store.php

– MAGENTO_ROOT/vendor/magento/framework/Url.php

第二步:获取模板(.phtml)文件中的当前URL和基础URL

请使用以下代码:

 <?php echo $block->getUrl('hello/test'); ?>
 <?php echo $block->getBaseUrl(); ?>

第三步:刷新缓存并检查结果

刷新 Magento 缓存并检查你的结果

本教程翻译自Mageplaza模块开发系列,其他内容请点击下面链接: