gpt4 book ai didi

javascript - jQuery ajax 调用不在 header 属性中发送日文字符

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:06:20 25 4
gpt4 key购买 nike

我正在使用 jquery.ajax 调用来调用我的服务并调用类似

$.ajax({
url : "my/url/for/post",
type : 'POST',
headers : {name:"私はガラスを食べら"},
contentType : "application/octet-stream",
processData : false,
async : true,
dataType : "json",
success : handlers.success,
error : handlers.error
});

但是当我在发送请求时检查 header 时,名称不在那里。

我是否必须设置任何其他属性才能在 header 中发送日文或中文字符?

最佳答案

使用 name: unescape(encodeURIComponent("私はガラスを食べら") 并尝试。encodeURIComponent() 将对特殊字符进行编码,而 unescape() 将对编码后的字符串进行解码。

关于javascript - jQuery ajax 调用不在 header 属性中发送日文字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21825992/

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