我使用该函数_getUrl
链接我在自定义模块中创建的顶部链接,但由于某种原因它重复了 URL。例如,假设我希望它链接到:
www.localhost.com/magento/sapna/account/index
相反,它显示:
www.localhost.com/magento/http://index/www.localhost.com/magentosapna/account/index
这是我的功能:
const ROUTE_FORM = 'sapna/account/index';
/**
* Retrieve goomer/breeder registariion url
*
* @return string
*/
public function getLoginUrl(){
return $this->_getUrl(self::ROUTE_FORM, $this->getLoginUrlParams());
}
我在 module/Helper/Data.php 中做,我使用 getUrl 它不起作用
我在 Data.php 帮助文件中写了这个。任何人都可以帮忙吗?我已经经历了很多次,但我看不出有什么问题。