我正在尝试从WCF服务返回一些JSON。此服务只是从我的数据库返回一些内容。我可以得到数据。但是,我担心我的JSON格式。目前,返回的JSON格式如下:
{"d":"[{\"Age\":35,\"FirstName\":\"Peyton\",\"LastName\":\"Manning\"},{\"Age\":31,\"FirstName\":\"Drew\",\"LastName\":\"Brees\"},{\"Age\":29,\"FirstName\":\"Tony\",\"LastName\":\"Romo\"}]"}
实际上,我希望我的JSON格式尽可能干净。我相信(我可能不正确),以干净的JSON表示的相同结果集应该如此:
[{"Age":35,"FirstName":"Peyton","LastName":"Manning"},{"Age":31,"FirstName":"Drew","LastName":"Brees"},{"Age":29,"FirstName":"Tony","LastName":"Romo"}]
我不知道“d”来自哪里。我也不知道为什么要插入转义字符。我的实体如下所示:
[DataContract]
public class Person
{
[DataMember]
public string FirstName { get; set; }
[DataMember]
public string LastName { get; set; }
[DataMember]
public int Age { get; set; }
public Person(string firstName, string lastName, int age)
{
this.FirstName = firstName;
this.LastName = lastName;
this.Age = age;
}
}
负责返回内容的服务定义为:
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class TestService
{
[OperationContract]
[WebGet(ResponseFormat = WebMessageFormat.Json)]
public string GetResults()
{
List<Person> results = new List<Person>();
results.Add(new Person("Peyton", "Manning", 35));
results.Add(new Person("Drew", "Brees", 31));
results.Add(new Person("Tony", "Romo", 29));
// Serialize the results as JSON
DataContractJsonSerializer serializer = new DataContractJsonSerializer(results.GetType());
MemoryStream memoryStream = new MemoryStream();
serializer.WriteObject(memoryStream, results);
// Return the results serialized as JSON
string json = Encoding.Default.GetString(memoryStream.ToArray());
return json;
}
}
如何从WCF服务返回“干净”的JSON? 谢谢!
答案 0 :(得分:208)
将GetResults的返回类型更改为List<Person>
消除用于将List序列化为json字符串的代码--WCF会自动为您执行此操作。
使用Person类的定义,此代码适用于我:
public List<Person> GetPlayers()
{
List<Person> players = new List<Person>();
players.Add(new Person { FirstName="Peyton", LastName="Manning", Age=35 } );
players.Add(new Person { FirstName="Drew", LastName="Brees", Age=31 } );
players.Add(new Person { FirstName="Brett", LastName="Favre", Age=58 } );
return players;
}
结果:
[{"Age":35,"FirstName":"Peyton","LastName":"Manning"},
{"Age":31,"FirstName":"Drew","LastName":"Brees"},
{"Age":58,"FirstName":"Brett","LastName":"Favre"}]
(全部在一行)
我还在方法上使用了这个属性:
[WebInvoke(Method = "GET",
RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json,
UriTemplate = "players")]
使用Method =“GET”的WebInvoke与WebGet相同,但由于我的一些方法是POST,因此我使用所有WebInvoke来保持一致性。
UriTemplate设置方法可用的URL。所以我可以做一个GET
http://myserver/myvdir/JsonService.svc/players
它只是有效。
还要检查IIRF或其他URL重写器以删除URI中的.svc。
答案 1 :(得分:90)
如果你想要没有硬编码属性的好json进入你的服务类,
在行为配置中使用<webHttp defaultOutgoingResponseFormat="Json"/>
答案 2 :(得分:27)
这是在web服务的web.config中完成的。将bindingBehavior设置为&lt; webHttp&gt;你会看到干净的JSON。额外的“[d]”由您需要覆盖的默认行为设置。
另请参阅此博文: http://blog.clauskonrad.net/2010/11/how-to-expose-json-endpoint-from-wcf.html
答案 3 :(得分:7)
我面临同样的问题,并通过将BodyStyle attribut值更改为&#34; WebMessageBodyStyle.Bare&#34;来解决它。 :
[OperationContract]
[WebGet(BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json,
ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetProjectWithGeocodings/{projectId}")]
GeoCod_Project GetProjectWithGeocodings(string projectId);
将不再包装返回的对象。
答案 4 :(得分:1)
使用GET方法时 合同必须是这个。
[WebGet(UriTemplate = "/", BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json)]
List<User> Get();
有了这个,我们有一个没有引导参数的json
Aldo Flores @alduar http://alduar.blogspot.com
答案 5 :(得分:0)
在您的IServece.cs中添加以下标记:BodyStyle = WebMessageBodyStyle.Bare
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "Getperson/{id}")]
List<personClass> Getperson(string id);