จะบังคับให้ ASP.NET Web API ส่งคืน JSON ได้อย่างไร


103

ASP.NET Web API ทำการเจรจาเนื้อหาตามค่าเริ่มต้น - จะส่งคืน XML หรือ JSON หรือประเภทอื่น ๆ ตามAcceptส่วนหัว ฉันไม่ต้องการ / ต้องการสิ่งนี้มีวิธี (เช่นแอตทริบิวต์หรืออะไรบางอย่าง) เพื่อบอกให้ Web API ส่งคืน JSON เสมอหรือไม่


คุณอาจสามารถลบฟอร์แมตทั้งหมดได้ยกเว้น json จากGlobalConfiguration.Configuration.Formatters
Claudio Redi

คำตอบ:


75

รองรับเฉพาะ JSON ใน ASP.NET Web API - THE RIGHT WAY

แทนที่ IContentNegotiator ด้วย JsonContentNegotiator:

var jsonFormatter = new JsonMediaTypeFormatter();
//optional: set serializer settings here
config.Services.Replace(typeof(IContentNegotiator), new JsonContentNegotiator(jsonFormatter));

การใช้งาน JsonContentNegotiator:

public class JsonContentNegotiator : IContentNegotiator
{
    private readonly JsonMediaTypeFormatter _jsonFormatter;

    public JsonContentNegotiator(JsonMediaTypeFormatter formatter) 
    {
        _jsonFormatter = formatter;    
    }

    public ContentNegotiationResult Negotiate(
            Type type, 
            HttpRequestMessage request, 
            IEnumerable<MediaTypeFormatter> formatters)
    {
        return new ContentNegotiationResult(
            _jsonFormatter, 
            new MediaTypeHeaderValue("application/json"));
    }
}

4
ส่วนแรกของโค้ดถูกตัดและวางด้วยตรงไหน? ฉันไม่เห็นวัตถุ "config" ใน Global.asax ของฉัน ตัวแปรนั้นมาจากไหน? บทความไม่ได้อธิบายเช่นกัน
BuddyJoe

3
ตรวจสอบวิธีการลงทะเบียนโมฆะแบบคงที่สาธารณะ (HttpConfiguration config) {... } ในไฟล์ WebApiConfig.cs ซึ่งได้รับการ gererated โดย VS2012 ในการสร้างโปรเจ็กต์
Dmitry Pavlov

สิ่งนี้จะบังคับ JSON ในแง่ที่ว่าไคลเอนต์ที่รับAcceptXML จะได้รับ JSON และจะไม่ได้รับ 406หรือไม่?
Luke Puplett

1
ฉันสามารถตอบความคิดเห็น / คำถามของตัวเองได้: ส่งคืน XML ไม่ว่าจะเป็นAcceptส่วนหัวใด
Luke Puplett

2
สิ่งนี้ทำให้การรวม swashbuckle ของฉันแตกและดูเหมือนว่าจะเกี่ยวข้องกับปัญหานี้ใน github ( github.com/domaindrivendev/Swashbuckle/issues/219 ) ฉันต้องการใช้วิธีนี้ แต่วิธีการด้านล่างใช้GlobalConfiguration...Clear()งานได้จริง
seangwright

167

ล้างฟอร์แมตทั้งหมดและเพิ่มตัวจัดรูปแบบ Json กลับ

GlobalConfiguration.Configuration.Formatters.Clear();
GlobalConfiguration.Configuration.Formatters.Add(new JsonMediaTypeFormatter());

แก้ไข

ผมเพิ่มไปยังภายในGlobal.asaxApplication_Start()


และไฟล์ใด .. ?? global.ascx .. ??
shashwat

ในวิธี Application_Start () ของคุณ
Jafin

6
Filip W เริ่มดีขึ้นแล้ว :) ดูได้ที่นี่strathweb.com/2013/06/…
Tien Do

7
@TienDo - เชื่อมโยงไปยังบล็อกของ Filip?
Phill

10

Philip W มีคำตอบที่ถูกต้อง แต่เพื่อความชัดเจนและวิธีการทำงานที่สมบูรณ์ให้แก้ไขไฟล์ Global.asax.cs ของคุณให้มีลักษณะดังนี้: (สังเกตว่าฉันต้องเพิ่มการอ้างอิง System.Net.Http.Formatting ไปยังไฟล์ที่สร้างในสต็อก)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Formatting;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;

namespace BoomInteractive.TrainerCentral.Server {
    // Note: For instructions on enabling IIS6 or IIS7 classic mode, 
    // visit http://go.microsoft.com/?LinkId=9394801

    public class WebApiApplication : System.Web.HttpApplication {
        protected void Application_Start() {
            AreaRegistration.RegisterAllAreas();

            WebApiConfig.Register(GlobalConfiguration.Configuration);
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);

            //Force JSON responses on all requests
            GlobalConfiguration.Configuration.Formatters.Clear();
            GlobalConfiguration.Configuration.Formatters.Add(new JsonMediaTypeFormatter());
        }
    }
}

9
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();

สิ่งนี้จะล้างฟอร์แมตเตอร์ XML และกำหนดค่าเริ่มต้นเป็นรูปแบบ JSON


สมบูรณ์แบบทุกสิ่งที่จำเป็น
tfa

4

แรงบันดาลใจจากคำตอบที่ยอดเยี่ยมของ Dmitry Pavlov ฉันปรับเปลี่ยนเล็กน้อยเพื่อให้ฉันสามารถเสียบฟอร์แมตใดก็ได้ที่ฉันต้องการบังคับใช้

เครดิต Dmitry

/// <summary>
/// A ContentNegotiator implementation that does not negotiate. Inspired by the film Taken.
/// </summary>
internal sealed class LiamNeesonContentNegotiator : IContentNegotiator
{
    private readonly MediaTypeFormatter _formatter;
    private readonly string _mimeTypeId;

    public LiamNeesonContentNegotiator(MediaTypeFormatter formatter, string mimeTypeId)
    {
        if (formatter == null)
            throw new ArgumentNullException("formatter");

        if (String.IsNullOrWhiteSpace(mimeTypeId))
            throw new ArgumentException("Mime type identifier string is null or whitespace.");

        _formatter = formatter;
        _mimeTypeId = mimeTypeId.Trim();
    }

    public ContentNegotiationResult Negotiate(Type type, HttpRequestMessage request, IEnumerable<MediaTypeFormatter> formatters)
    {
        return new ContentNegotiationResult(_formatter, new MediaTypeHeaderValue(_mimeTypeId));
    }
}

2

หากคุณต้องการทำเช่นนั้นสำหรับวิธีการเดียวเท่านั้นให้ประกาศว่าวิธีการของคุณเป็นย้อนกลับHttpResponseMessageแทนIEnumerable<Whatever>และทำ:

    public HttpResponseMessage GetAllWhatever()
    {
        return Request.CreateResponse(HttpStatusCode.OK, new List<Whatever>(), Configuration.Formatters.JsonFormatter);
    }

รหัสนี้เป็นความเจ็บปวดสำหรับการทดสอบหน่วย แต่ก็เป็นไปได้เช่นนี้:

    sut = new WhateverController() { Configuration = new HttpConfiguration() };
    sut.Configuration.Formatters.Add(new Mock<JsonMediaTypeFormatter>().Object);
    sut.Request = new HttpRequestMessage();

ถ้าคุณต้องการบางอย่างสำหรับวิธีการเพียงสร้างmsdn.microsoft.com/en-us/library/…
Elisabeth

2

มีการตั้งค่าส่วนหัวที่ถูกต้อง ดูเหมือนจะสง่างามมากขึ้น

public JsonResult<string> TestMethod() 
{
return Json("your string or object");
}

1
ชื่อที่มีคุณสมบัติครบถ้วนสำหรับคลาส JsonResult และ Json คืออะไร
Josh Withee



0

สำหรับผู้ที่ใช้ OWIN

GlobalConfiguration.Configuration.Formatters.Clear();
GlobalConfiguration.Configuration.Formatters.Add(new JsonMediaTypeFormatter());

กลายเป็น (ใน Startup.cs):

   public void Configuration(IAppBuilder app)
        {
            OwinConfiguration = new HttpConfiguration();
            ConfigureOAuth(app);

            OwinConfiguration.Formatters.Clear();
            OwinConfiguration.Formatters.Add(new DynamicJsonMediaTypeFormatter());

            [...]
        }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.