最好使用的 JavaScript 文本编码是什么?

发布于 2024-09-29 02:40:10 字数 157 浏览 1 评论 0原文

我正在创建一个 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 技术交流群。

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

发布评论

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

评论(2

寄居者 2024-10-06 02:40:10

简单的 utf-8 文本 - 但考虑正确的 urlencoding 来处理特殊字符(看看 encodeURI())

simple utf-8 text - but think of correct urlencoding to handle special chars (take a look at encodeURI())

画中仙 2024-10-06 02:40:10

UTF-8。另外,如果您使用 jquery,您始终可以在数据哈希中传递参数,以便正确编码它们:

始终执行:

$.ajax({
    url: '/script',
    data: { param1: 'someValue', param2: 'someOtherValue' },
    success: function(result) { }
});

而不是:

$.ajax({
    url: '/script?param1=someValue¶m2=someOtherValue',
    success: function(result) { }
});

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:

$.ajax({
    url: '/script',
    data: { param1: 'someValue', param2: 'someOtherValue' },
    success: function(result) { }
});

instead of:

$.ajax({
    url: '/script?param1=someValue¶m2=someOtherValue',
    success: function(result) { }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文