“&”的问题使用ajax将数据发布到php时的签名

发布于 2024-11-28 15:45:58 字数 276 浏览 1 评论 0原文

我使用tinyMce 作为我的编辑器。 发送内容以保存在数据库中或回显它一切都很好。但是当&符号“&”时来了,之后的所有数据都被截断并且不保存在数据库中或回显 我应该怎么办。这里我有文件,只有1kb,请下载,运行它 谢谢大家。

下载文件

如果你能找到摆脱的方法“&”的标志告诉我和其他人如何......

i use tinyMce as my editor.
everything is fine with sending content to save in database or echo it out. but when an ampersand sign "&" comes , all data after that truncated and dont save in database or echo out
what should i do. here i have file , it's only 1kb, please download it, run it
thank you everyone.

Download File

please if you could fine a way to get rid of "&" sign tell me and others how... .

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

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

发布评论

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

评论(1

ぺ禁宫浮华殁 2024-12-05 15:45:59

问题肯定出在js上。您应该使用encodeURIComponent()来发送urlencoded信息。如

var parameters = 'message='+encodeURIComponent(message);

w3schools 上的encodeURIComponent()

the problem is surely in the js. you should use encodeURIComponent() to send urlencoded information. as in

var parameters = 'message='+encodeURIComponent(message);

encodeURIComponent() on w3schools

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