Java Web 应用程序的富文本问题
有人可以指导我了解如何在基于 Java 的 Web 应用程序中实现富文本功能。我使用 Xinha 进行所见即所得 HTML 编辑器,并且文本字段的 MySql 数据类型为“TEXT”。
我能够显示 Xinha WYSIWYG HTML,但无法将数据保存到数据库中。在不使用所见即所得 HTML 编辑器保存数据的情况下工作正常的代码不再工作。现在,当我尝试保存数据时,我在数据库中得到一个 NULL 值。
有人可以指导我如何完成它吗?
谢谢。
Could someone guide me understand how to implement Rich Text functionality in Java based Web application. I am using Xinha for WYSIWYG HTML editor and I am having MySql data type of the text field as 'TEXT'.
I am able to get the Xinha WYSIWYG HTML displayed but I am not able to get the data saved to database. The code that was working fine without using WYSIWYG HTML editor to save the data is not working anymore. Now when I try to save the data I am getting a NULL value in the database.
Could someone guide me how to get it done?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先:html代码是否正确记录在数据库中?如果你去那里
SELECT
记录,你会看到html代码吗?如果是这样,也许您的视图技术正在将
<>
替换为lt;
和gt;
,因此浏览器不会创建 DOM 节点。您能告诉我们您使用什么技术以及生成的源代码是什么吗? (是否有标签?)。
First of all: the html code is recorded correct in the database? If you go there and
SELECT
the records, you will see html code?If so, maybe your view technology is replacing
<>
tolt;
andgt;
, so the browser is not creating DOM nodes.Can you please tell us what technology are you using and what is the generated source code? (if has or not tags?).