当前位置:  开发笔记 > 前端 > 正文

申请机构应该如何?

如何解决《申请机构应该如何?》经验,为你挑选了1个好方法。

我有一个WCF服务,其方法看起来像这样(使用调试器返回null进行测试,我只关心现在获取数据):

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

我正在尝试使用Fiddler向该方法发出请求,但无法理解正确的Request Body应该是什么.如果效果更好,我可以将Dictionary参数更改为其他参数.

在请求标题我通过:

User-Agent:Fiddler
Content-Type:application/json; 字符集= utf-8的

我该怎么把身体放进去?



1> Matthew Pels..:

我想这就是你所追求的.

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

字典序列化为键值数组.

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有