好吧,假设我想使用 POSTMAN 或任何其他 Rest 服务客户端工具来调用我的代码,我该怎么做?我的参数之一“数据”很大,我不想在 URL 中包含“数据”或有效负载,我想从正文中调用它?
这是实际的代码
[OperationContract(Name = "createNewSurvey")]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "post/createNewSurvey")]
string CreateNewSurvey(string id, string Data);
public string CreateNewSurvey(string id, [FromBody]string Data)
{
//do somethoinf
return data;
}
任何帮助将不胜感激
谢谢