gpt4 book ai didi

wcf - 请求正文应如何显示?

转载 作者:行者123 更新时间:2023-12-04 18:17:23 26 4
gpt4 key购买 nike

我有一个WCF服务,其方法如下所示(为调试器测试返回null,我现在只关心数据输入):

[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "fares", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.WrappedRequest)]
public List<Fare> GetFares(Dictionary<int, int> itineraries, decimal? threshold, bool includeInternational)
{
return null;
}

我正在尝试使用Fiddler对该方法进行请求,但无法确定正确的请求正文应该是什么。如果效果更好,我可以将Dictionary参数更改为其他参数。

在请求 header 中,我通过了:

User-Agent: Fiddler
Content-Type: application/json; charset=utf-8



我应该放在体内什么?

最佳答案

我想这就是你所追求的。

{
"itineraries" : [{"Key":1,"Value":2},{"Key":2,"Value":3}],
"threshold" : 1.0,
"includeInternational" : true
}

字典序列化为键值数组。

关于wcf - 请求正文应如何显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/653803/

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