我正在尝试在AEM 6.4的组件之一中换行。 我尝试了'\ n','\ r',但是没有用。
<instructionone
jcr:primaryType="cq:Widget"
text="1) line 1 .
2) this will be line 2
3) line 3 "
fieldLabel=""
name="./instructionone"
autoWidth="false"
xtype="menutextitem">
</instructionone>
答案 0 :(得分:0)
如果这是html,则应使用<br/>
作为Antonyh建议。
如果要在Java中使用此值,我相信在保存到jcr属性时必须使用双斜杠。
尝试使用:
<instructionone
jcr:primaryType="cq:Widget"
text="1) line 1 .\\n2) this will be line 2\\n3) line 3"
fieldLabel=""
name="./instructionone"
autoWidth="false"
xtype="menutextitem">
</instructionone>