gpt4 book ai didi

javascript - 带有 XML 数据的 HTTP POST 请求

转载 作者:行者123 更新时间:2023-11-28 15:47:58 25 4
gpt4 key购买 nike

我希望使用 XML 有效负载发出 HTTP POST 请求。

我看过这个文档: http://api.jquery.com/jquery.post/

这里的参数data是我相信我应该感兴趣的。

但是,我并不完全清楚如何指定此 data 参数的格式。根据我早期的大部分经验,此参数是 application/x-www-form-urlencoded

但是,我的请求有一个 XML 负载。

有什么指示吗?

最佳答案

$.post 是一个简写函数,涵盖了一些常见的用例,但有一些不可更改的默认值。使用the $.ajax method反而。它允许您设置请求的内容类型。

contentType (default: 'application/x-www-form-urlencoded; charset=UTF-8')

Type: String

When sending data to the server, use this content type. Default is "application/x-www-form-urlencoded; charset=UTF-8", which is fine for most cases. If you explicitly pass in a content-type to $.ajax(), then it is always sent to the server (even if no data is sent). The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding.

关于javascript - 带有 XML 数据的 HTTP POST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21574318/

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