当前位置: 技术文章>> 如何在Magento 2中将参数传递给URL

文章标题:如何在Magento 2中将参数传递给URL
  • 文章分类: Magento
  • 18476 阅读
系统学习magento二次开发,推荐小册:《Magento中文全栈二次开发 》

本小册面向Magento2以上版本,书代码及示例兼容magento2.0-2.4版本。涵盖了magento前端开发,后端开发,magento2主题,magento2重写,magento2 layout,magento2控制器,magento2 block等相关内容,带领您成为magento开发技术专家。


如何在Magento 2中将参数传递给URL的步骤:

应用下面给定的方法通过任何特定产品的 URL 传递参数。

<?php
namespace Vendor\Extension\Helper;
 
 
class Data extends AbstractHelper
{
    protected $urlBuilder;
   
    public function __construct(
        \Magento\Framework\App\Helper\Context $context,
        \Magento\Framework\UrlInterface $urlBuilder
    )
    {
        $this->urlBuilder = $urlBuilder;
        parent::__construct($context);
    }
 
    public function GetParamsUrl()
    {
        $queryParams = [
            'param_1' => value1, // value for parameter
            'param_2' => value2
        ];
       
       return $this->urlBuilder->getUrl('route/controller/action', ['_current' => true,'_use_rewrite' => true, '_query' => $queryParams]);
    }
}

重要说明:对于 phtml 文件,请使用:

$block->getUrl('route/controller/action',['param'=>'value'])

结论:

因此,在实施上述步骤后,您可以轻松地将参数传递给Magento 2中的URL,并提高您的业务增长和客户体验。


推荐文章