不是啊,贴点你的代码看看
提示下载?
IIS 没有指定JSON的MIME吧?
是不是上传文件? 上传文件需要返回 string 而不是 ActionResult
var response = new HttpResponseMessage(System.Net.HttpStatusCode.OK); HttpContent content = response.Content; response.Content = new StringContent("result"); return response;
ApiController新版用这种方式能返回text/plain; charset=utf-8,前台也能正常接收
和之前的Bata还是有点不同
感谢楼上各位