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.
在 HTTPGet API 方法中,似乎默认情况下它会以 XML 格式返回对象。我怎样才能让它以 JSON 格式返回?
ASP.NET Web API 具有内置的内容协商,您只需在 HTTP 请求的Accept标头字段中指定您想要json的而不是xml.
json
xml
您可以在本文中开始了解有关内容协商的更多信息。