如何在Hybris PCM中找到新创建的类别的特定URL

时间:2017-02-07 04:40:16

标签: sap hybris

您好,每当我尝试在hybris产品驾驶舱中创建新产品类别时 我创建标识符,名称和正确的目录版本是在线

但是当我尝试编辑当前丢失的网站导航时,我在哪里可以找到该特定类别的网址,因此当用户点击该导航时,它将过滤标记了哪个类别的产品

1 个答案:

答案 0 :(得分:0)

  • 如果您的导航菜单由 CMSLinkComponent 组成,那么您很幸运,因为CMSLinkComponent已经完成了处理,您只需:

    1. 创建一个新的CMSLinkComponent。
    2. 将新的创建类别附加到CMSLinkComponent。
    3. 然后将此CMSLinkComponent添加到导航菜单。 (这就是你需要做的所有事情)。

enter image description here

  • 但是,如果您不使用CMSLinkComponent,则可以使用defaultCategoryModelUrlResolver.resolve(newCategory)生成类别的URL,然后将其发送回Front以进行打印。

    < / LI>
  • 或者只是在jsp文件中将其打印出来:

    <c:url var="categoryUrl" value="/c/${newCategory.code}" /> <a href="${categoryUrl}">${newCategory.name}</a>