在 ASP.NET MVC 中从 CKEditor 提交 HTML
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 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)]
我没有成功,所以如果您不需要使用 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