最好使用的 JavaScript 文本编码是什么?
我正在创建一个 jQuery / AJAX 搜索脚本,并且我试图找到在发送到等待的 PHP 文件的字符串上使用的最佳文本编码,该文件将执行 SQL 查询以获取结果。
我在想Base64?但由于我在该领域没有太多经验,因此我将不胜感激任何可以提供帮助的意见。
提前致谢!
I am creating a jQuery / AJAX search script, and I am trying to find the best text encoding to use on the string that gets sent to the waiting PHP file that will be doing the SQL query to get the results.
I was thinking Base64? But as I do not have a lot of experience in this field, I would appreciate any input that could help.
Thanx in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的 utf-8 文本 - 但考虑正确的 urlencoding 来处理特殊字符(看看 encodeURI())
simple utf-8 text - but think of correct urlencoding to handle special chars (take a look at encodeURI())
UTF-8。另外,如果您使用 jquery,您始终可以在数据哈希中传递参数,以便正确编码它们:
始终执行:
而不是:
UTF-8. Also if you are using jquery you could always pass parameters in the data hash in order to properly encode them:
Always do:
instead of: