답변:
ASP.NET Web API에서 JSON 만 지원 – 올바른 방법
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"));
}
}
Accept
XML 을 사용하는 클라이언트 가 JSON을 얻고 406을 얻지 못한다 는 의미에서 JSON을 강제 합니까?
Accept
. 헤더에 관계없이 XML을 반환합니다 .
GlobalConfiguration...Clear()
실제로 작동합니다.
모든 포맷터를 지우고 Json 포맷터를 다시 추가하십시오.
GlobalConfiguration.Configuration.Formatters.Clear();
GlobalConfiguration.Configuration.Formatters.Add(new JsonMediaTypeFormatter());
편집하다
Global.asax
내부에 추가했습니다 Application_Start()
.
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());
}
}
}
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();
이렇게하면 XML 포맷터가 지워 지므로 기본값은 JSON 형식입니다.
Dmitry Pavlov의 훌륭한 답변에 영감을 받아 약간 변경하여 적용하려는 포맷터를 플러그인 할 수있었습니다.
드미트리에 대한 크레딧.
/// <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));
}
}
하나의 메서드에 대해서만 그렇게하려면 메서드를 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();
올바른 헤더가 설정되었습니다. 좀 더 우아하게 보입니다.
public JsonResult<string> TestMethod()
{
return Json("your string or object");
}
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());
[...]
}
GlobalConfiguration.Configuration.Formatters