Java Web 应用程序的富文本问题

发布于 2024-10-20 17:39:36 字数 251 浏览 4 评论 0原文

有人可以指导我了解如何在基于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月竹挽风 2024-10-27 17:39:36

首先: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 <> to lt; and gt;, 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?).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文