Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要通过HTTP GET请求发送参数。由于我的 HTTP 客户端必须是通用的,因此我将参数添加为查询参数(?key=value&k=v)和请求header (key: value)。
(?key=value&k=v)
header (key: value)
这是一个好方法吗?寻找标头的服务器是否会忽略查询参数,反之亦然?
请建议。
按照惯例,您应该在查询字符串中设置 GET 请求的请求参数。标头用于与请求一起传递消息/元信息。因此,仅使用标头设置该信息,例如 Content-Type、Accept。
避免混合标头和请求参数。