我试图允许在描述Product
插入图像。我在 help.hybris.com 遵循官方文档。出现了Add image
功能的图标。我可以上传图像,但是图像未显示在前端页面上(Product detail page
(。它在后台描述字段中可见,因此已保存。
我还尝试按照同一手册中的建议启用 base64 编码,但没有帮助。 在我进行了这些更改之后,我确实运行了ant clean all
,重新启动了hybris服务器并在后台运行了REDEPLOY
。
这是我custom-backoffice-config.xml
文件
<context merge-by="type" parent="GenericItem" type="Product" component="editor-area">
<editorArea:editorArea xmlns:editorArea="http://www.hybris.com/cockpitng/component/editorArea">
<editorArea:tab name="hmc.tab.product.properties">
<editorArea:section name="hmc.product.descriptions">
<editorArea:attribute editor="com.hybris.cockpitng.editor.localized(com.hybris.cockpitng.editor.wysiwyg)" qualifier="description" merge-mode="replace">
<editorArea:editor-parameter>
<editorArea:name>base64Encoded</editorArea:name>
<editorArea:value>true</editorArea:value>
</editorArea:editor-parameter>
</editorArea:attribute>
<editorArea:attribute qualifier="summary" merge-mode="remove"/>
</editorArea:section>
</editorArea:tab>
...
看起来启用base64
编码对我不起作用,但我无法看到那里出了什么问题。
我正在使用Hybris ver. 1811
事实证明,前端有一个函数可以过滤掉每个html标签。
所以我必须从这里改变它
${ycommerce:sanitizeHTML(product.description)}
对此
${product.description}