在 ASP.NET MVC 中从 CKEditor 提交 HTML

发布于 2024-11-29 19:51:18 字数 216 浏览 2 评论 0原文

我将 CKEditor 与 JQuery AJAX 和 ASP.NET MVC 一起使用。

我正在尝试使用 JQuery 执行 AJAX POST,但由于文本区域中的 HTML 而无法提交。如果我只是在文本区域中输入纯文本,而不是 HTML,则表单可以正常提交。

我用来从文本区域获取 HTML 的 JQuery 方法是 .val()

有人可以告诉我如何解决这个问题吗?

I am using CKEditor with JQuery AJAX and ASP.NET MVC.

I am trying to perform an AJAX POST with JQuery but it fails to submit because of the HTML in the textarea. The form submits fine if I just enter plain text in a textarea, but not as HTML.

The JQuery method I am using to get the HTML from the textarea is .val()

Can someone tell me how to fix this problem please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

微暖i 2024-12-06 19:51:18

您必须使用 GetData 并确保您的控制器操作接受帖子的应用了此注释 [HttpPost, ValidateInput(false)]

You will have to use GetData and also make sure your controller action that accepts the post has this annotation applied [HttpPost, ValidateInput(false)]

手心的温暖 2024-12-06 19:51:18

我没有成功,所以如果您不需要使用 CKEditor,您可以切换到tinymce,您可以通过 NuGet (安装包 TinyMCE.MVC)添加它,这与 MVC 配合得很好

I did not succeed in that so if you are not required to use CKEditor you can switch to tinymce which you can add via NuGet (install-package TinyMCE.MVC) and this works fine with MVC

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