TinyMCE 和.Net - 在文本中使用单引号进行 POST 时出错

发布于 2024-12-20 23:36:26 字数 301 浏览 1 评论 0原文

我在 .Net Web Forms 应用程序中使用 jQuery TinyMCE 控件。
我主要将它与 AJAX 和 Web 服务一起使用,但在一个实例中,我必须让它作为表单的一部分发布到服务器。

对于几乎所有输入,它都可以正常工作

$('#<%= eText.ClientID %>').tinymce({
    encoding: 'xml'
});

,但是当我尝试保存单引号 ' 时,我收到不安全输入错误。

我能做什么来处理这个问题?

I am using the jQuery TinyMCE control in my .Net Web Forms application.
I primarily use it with AJAX and webservices however in one instance I have to let it post to the server as a part of the form.

For almost all input it works fine with

$('#<%= eText.ClientID %>').tinymce({
    encoding: 'xml'
});

However the moment I try to save a single quote ' I get the unsafe input error.

What can I do to handle this?

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

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

发布评论

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

评论(2

掐死时间 2024-12-27 23:36:26

对于使用版本 4 的用户:

setup: function (editor) {
   editor.on('SaveContent', function (ed) {
      ed.content = ed.content.replace(/'/g, "&apos");
   });
} 

For those using version 4:

setup: function (editor) {
   editor.on('SaveContent', function (ed) {
      ed.content = ed.content.replace(/'/g, "&apos");
   });
} 
夢归不見 2024-12-27 23:36:26

哎呀,当你放弃并问一个这样的问题时,你会在谷歌上找到答案。
我可能稍后会需要这个,所以我将把它留在这里。

感谢这个博客上的OP。
http://blog.tentaclesoftware.com/archive/2010/07 /22/96.aspx#414

tinyMCE.init({
    // ...
    setup: function (ed) {
        ed.onSaveContent.add(function (ed, o) {
            o.content = o.content.replace(/'/g, "&apos");
        });
    }
});

Oi, just when you give up and ask a SO question you find the answer on google.
I'm probably going to need this later so I'm going to leave this here.

Thanks to OP on this blog.
http://blog.tentaclesoftware.com/archive/2010/07/22/96.aspx#414

tinyMCE.init({
    // ...
    setup: function (ed) {
        ed.onSaveContent.add(function (ed, o) {
            o.content = o.content.replace(/'/g, "&apos");
        });
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文