码迷,mamicode.com
首页 > Windows程序 > 详细

Asp.net Web Api 返回结果格式,及在浏览器中的显示

时间:2016-11-22 16:53:07      阅读:421      评论:0      收藏:0      [点我收藏+]

标签:efault   register   gis   att   center   utf-8   rri   web api   repr   

 

using System.Collections.Generic;
using System.Web.Http;
using ExtJS.WebApi.Data;

namespace ExtJS.WebApi.Controllers
{
    [RoutePrefix("api/Book")]
    public class BookController : ApiController
    {
        [Route("Get")]
        public List<BookModel> Get()
        {
            return BookRepository.List;
        }
    }
}

用火狐浏览器,显示:

技术分享

技术分享

返回的 【Content-Type】是【application/xml】

 

ExtJS 4

    Ext.regModel(‘BookInfo‘,
   {
       fields: [{ name: ‘Name‘, type: ‘string‘ }]
   });

    var bookStore = Ext.create(‘Ext.data.JsonStore‘,
    {
        model: ‘BookInfo‘,
        proxy: {
            type: ‘ajax‘, 
            url: baseUrl + ‘Book/Get‘,
            reader: { type: ‘json‘ }
        }
    });

 {
            xtype: ‘combo‘,
            fieldLabel: ‘书籍列表‘,
            listConfig: {
                loadingText: ‘正在加载书籍信息‘,
                emptyText: ‘未能找到匹配值‘
            },

            triggerAction: ‘all‘,
            store: bookStore,
            displayField: "Name",
            valueField: "Name",
            queryMode: ‘remote‘,
            queryDelay: 300
 }

 

请求成功,返回数据是XML的

技术分享

无法将数据显示在下拉框中

技术分享

 

IE没问题。请求到的数据是application/json格式的数据

但是在IE中,返回的是【application/json】

技术分享

 

为解决火狐浏览器,请求 asp.net webapi 的数据,得到的是xml的数据,需要这样做:

 

 

 

    public class BrowserJsonFormatter : JsonMediaTypeFormatter
    {
        public BrowserJsonFormatter()
        {
            this.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
            this.SerializerSettings.Formatting = Formatting.Indented;
        }

        public override void SetDefaultContentHeaders(Type type, HttpContentHeaders headers, MediaTypeHeaderValue mediaType)
        {
            base.SetDefaultContentHeaders(type, headers, mediaType);
            headers.ContentType = new MediaTypeHeaderValue("application/json") { CharSet = "UTF-8" };
        }
    }

 

\App_Start\WebApiConfig.cs

        public static void Register(HttpConfiguration config)
        {
           ...           
            config.Formatters.Add(new BrowserJsonFormatter());
        }

再次请求api

技术分享

技术分享

技术分享

 

 

 

 

参考:

http://stackoverflow.com/questions/9847564/how-do-i-get-asp-net-web-api-to-return-json-instead-of-xml-using-chrome

Asp.net Web Api 返回结果格式,及在浏览器中的显示

标签:efault   register   gis   att   center   utf-8   rri   web api   repr   

原文地址:http://www.cnblogs.com/CodingArt/p/6089677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!