我在 .net 中有一个 wcf 服务,我想返回一个命名的 JSON 对象。这就是我想要返回 JSON 对象的方式:
{"file":"\/9j\/4AAQSkZJRgABAQEASABIAAD\/4"}
但这是从 c# 中的服务返回的方式
"\"\/9j\/4AAQSkZJRgABAQEASABIAAD\/4
这是我用来返回它的代码
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json,
UriTemplate = "getFile/{fname}")]
public string GetFile(string name)
{
/*
* Some code (not important)
*/
return JsonConvert.SerializeObject(System.Convert.ToBase64String(image));
}