我正在尝试使用ASP.NET Web API返回一个JSON文件(用于测试)。
public string[] Get()
{
string[] text = System.IO.File.ReadAllLines(@"c:\data.json");
return text;
}
在Fiddler中,它确实显示为Json类型,但是当我在Chrome中调试并查看它出现的对象和各行的数组(左)时。正确的图像是我使用它时对象的样子。
任何人都可以告诉我应该以正确的格式返回以获得Json结果吗?
答案 0 :(得分:26)
文件中是否已包含有效的JSON?如果是这样,您应该调用File.ReadAllLines
而不是调用File.ReadAllText
,而是将其作为单个字符串。然后,您需要将其解析为JSON,以便Web API可以重新序列化它。
public object Get()
{
string allText = System.IO.File.ReadAllText(@"c:\data.json");
object jsonObject = JsonConvert.DeserializeObject(allText);
return jsonObject;
}
这将:
答案 1 :(得分:19)
我找到了另一个解决方案,如果有人有兴趣也可以。
public HttpResponseMessage Get()
{
var stream = new FileStream(@"c:\data.json", FileMode.Open);
var result = Request.CreateResponse(HttpStatusCode.OK);
result.Content = new StreamContent(stream);
result.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
return result;
}
答案 2 :(得分:3)
我需要类似的东西,但IHttpActionResult(WebApi2)是必需的。
public virtual IHttpActionResult Get()
{
var result = new System.Net.Http.HttpResponseMessage(System.Net.HttpStatusCode.OK)
{
Content = new System.Net.Http.ByteArrayContent(System.IO.File.ReadAllBytes(@"c:\temp\some.json"))
};
result.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json");
return ResponseMessage(result);
}