[Grails] 请教:在Grails里使用FCKeditor的问题
hejianhuacn
2008-01-28
在使用Grails里的FCKEditor plugin时,为什么保存到数据库里的代码重新读出来时,显示的总是带有HTML标签的内容?是不是配置项里面要设置什么属性?我的程序中使用了3个domain,分别是:[img]http://hejianhuacn.iteye.com/upload/picture/pic/7427/191a673e-4e5b-3321-8446-4bf94105abc8.jpg" border="0" alt="domain_ER" width="572" height="323[/img]
新增页面: [img]http://hejianhuacn.iteye.com/upload/picture/pic/7433/213bfe28-d68f-34dc-9af4-3cece7b8c42e.jpg" border="0" alt="Add" width="572" height="323"[/img] 修改的页面: [img] http://hejianhuacn.iteye.com/upload/picture/pic/7435/0b9267f2-fba6-3427-acac-ce467cddeeb9.jpg " border="0" alt="Update" width="572" height="323"[/img] 加载数据的代码: <fck:editor id='content' name='content' height="400" >${fieldValue(bean:article,field:'content')}</fck:editor> 我想在修改的页面也显示跟新增页面一样的效果怎么设置? |
|
agile_boy
2008-01-29
没有研究,发mail到mailist?
|
|
hejianhuacn
2008-01-29
E文不太好,估计写出来的就自己能看得懂,丢人啊
|
|
agile_boy
2008-01-29
那就更要多练了,其实我觉得表达基本的情况描述,国内的程序员还是有这样的功力的,只是觉得如果国外那么标准而已。
|
|
dellsoft
2008-01-29
好像有一个${bean.xx}.encodeAs 什么方法,你没有找来试一试
|
|
zengsun
2008-01-29
用这个试一下:
<fck:editor id='content' name='content' height="400" >${article.content}</fck:editor> |
|
hejianhuacn
2008-01-30
zengsun 写道 用这个试一下:
<fck:editor id='content' name='content' height="400" >${article.content}</fck:editor> 这样就行了! 靠 我用的那种方式怎么都不行,试过encodeAS..的方式 但是用的是${fieldValue(bean:article,field:'content').encodeAS..} 呵呵 ,还是人多好办事 上面说发E文的“漂流瓶”我试过了,呵呵 不知道是别人看不懂还是怎么的,反正没有跟帖。我们在这里要互相帮忙,搞一个好一点环境,那天我们也站在巨人的肩膀上,搞出点东西 呵呵 谢谢 大家的回复 |