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.
C#菜鸟在这里。
我正在做一个简单的 wcf 服务 RestAPI,到目前为止一切都很好......但是我的 json 字符串响应并没有按照我想要的方式出现。
实际响应: {"GetInfoResult":{"Name":"John"}}
期望的响应: {"Name": "John"}
如何删除GetInfoResult字段?
谢谢
您应该能够将 BodyStyle 设置为WebMessageBodyStyle.Bare您的WebGet注释,默认情况下WebMessageBodyStyle.Wrapped添加您不想要的包装器;
WebMessageBodyStyle.Bare
WebGet
WebMessageBodyStyle.Wrapped
[WebGet(BodyStyle = WebMessageBodyStyle.Bare)]