gpt4 book ai didi

javascript - 使用跨域帖子发送凭据?

转载 作者:IT王子 更新时间:2023-10-29 02:50:05 28 4
gpt4 key购买 nike

根据 Requests with credentials ,如果

invocation.withCredentials = "true";

已设置...但 jQuery 的 Ajax API 似乎并未为此提供任何机制。

我错过了什么吗?还有其他方法吗?

最佳答案

功能应该在 jQuery 1.5 中被破坏。

从 jQuery 1.5.1 开始,您应该使用 xhrFields 参数。

$.ajaxSetup({
type: "POST",
data: {},
dataType: 'json',
xhrFields: {
withCredentials: true
},
crossDomain: true
});

文档:http://api.jquery.com/jQuery.ajax/

报告的错误:http://bugs.jquery.com/ticket/8146

关于javascript - 使用跨域帖子发送凭据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2054316/

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