gpt4 book ai didi

javascript - 使用 Node 请求模块的 UTF8 字符编码

转载 作者:搜寻专家 更新时间:2023-10-31 23:24:57 25 4
gpt4 key购买 nike

我有一个简单的应用程序,它使用 jquery ajax 请求将表单数据发送到 Node 服务器, Node 服务器又使用 Node js 的请求模块提交给第三方 api。

我遇到的问题是重音(和其他类似)字符在到达第三方服务器时未正确编码。例如é被记录为é

我相当确定这与 Request 的设置有关,因为我在绕过 ajax 调用时得到了相同的结果。

这是我正在使用的设置:

html:

<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

jquery ajax 设置:

type        : 'POST',
url : '/api',
data : formData, // A json object
dataType : 'json',
ContentType : 'text/html; charset=utf-8'

Node 中的请求模块设置(ajax post 和请求发送之间的表单数据没有任何变化):

request.post({
url: "https://testurl.com/api/",
form: formData,
headers: {'Content-Type': 'application/json; charset=utf-8'}
} ...

我已经阅读了各种 SO 解决方案但没有成功,因此非常感谢任何建议。

最佳答案

在研究了字符编码之后,我发现问题与各种字符的多字节编码有关(快速谷歌一下会发现一些关于该主题的优秀 SO 帖子)。

我认为 Request 没有自动处理这个问题很奇怪,所以我尝试使用 Request 语法并设法解决了这个问题。这是我修改后的有效代码:

request(
{
url: 'https://testurl.com/api/',
method: 'POST',
json: true,
headers: {
'content-type': 'application/json'
},
body: formData
},
function (error, response, body) {
...
}
);

关于javascript - 使用 Node 请求模块的 UTF8 字符编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29005084/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com