WebApi: configure the time in which the global returned Json data is formatted and named in lower case, webapijson

Source: Internet
Author: User

WebApi: configure the time in which the global returned Json data is formatted and named in lower case, webapijson

1. Directly configure in the Global file:

1 var formatters = GlobalConfiguration. configuration. formatters; 2 var jsonFormatter = formatters. jsonFormatter; 3 var settings = jsonFormatter. serializerSettings; 4 settings. formatting = Newtonsoft. json. formatting. indented; 5 settings. dateFormatString = "yyyy-MM-dd HH: mm: ss"; 6 settings. contractResolver = new CamelCasePropertyNamesContractResolver ();
View Code

2. configure any return format json and xml

1config. formatters. jsonFormatter. mediaTypeMappings. add (new QueryStringMapping ("format", "json", "application/json"); 2config. formatters. xmlFormatter. mediaTypeMappings. add (new QueryStringMapping ("format", "xml", "application/xml "));
View Code

3. Configure Cors using Cors

3.1 configuration under webapi Controller

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.