我正在尝试使用requests
模块复制此请求:
$.ajax({
method: "GET",
url: "/Game/PlaceLauncher.ashx",
data: {
request: "RequestGame",
placeId: n,
isPartyLeader: t,
gender: i
},
crossDomain: !0,
xhrFields: {
withCredentials: !0
}
})
我该如何crossDomain
和xhrFields
?