我目前正在Magento网站上创建几个页面,这些页面是二级和三级网址。即主页>第一级>第二级。
我想知道如何在面包屑的自定义设计中获得基本网址。
在普通的layout.xml页面中,我可以使用以下内容:
<block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs">
<action method="addCrumb">
<crumbName>Home</crumbName>
<crumbInfo>
<label>Home</label>
<title>Home</title>
<link>{{baseUrl}}</link>
</crumbInfo>
</action>
<action method="addCrumb">
<crumbName>level1</crumbName>
<crumbInfo>
<label>first level</label>
<title>first level</title>
<link>{{baseUrl}}first-level</link>
</crumbInfo>
</action>
<action method="addCrumb">
<crumbName>level2</crumbName>
<crumbInfo>
<label>Second Level</label>
<title>Second Level</title>
</crumbInfo>
</action>
</block>
在自定义设计中使用{{baseUrl}}
不起作用。
谢谢。