gpt4 book ai didi

c# - 如何在 MVC 5 项目中使用 Json.NET 进行 JSON 模型绑定(bind)?

转载 作者:IT王子 更新时间:2023-10-29 04:21:15 25 4
gpt4 key购买 nike

我一直在互联网上寻找答案或示例,但还没有找到。我只是想更改默认的 JSON 序列化程序,该序列化程序用于在模型绑定(bind)到 JSON.NET 库时反序列化 JSON。

我找到了 this所以发布,但到目前为止无法实现它,我什至看不到 System.Net.Http.Formatters 命名空间,也看不到 GlobalConfiguration

我错过了什么?

更新

我有一个 ASP.NET MVC 项目,它基本上是一个 MVC3 项目。目前我的目标是 .NET 4.5 并使用 ASP.NET MVC 5 和相关的 NuGet 包。

我没有看到 System.Web.Http 程序集,也没有看到任何类似的命名空间。在这种情况下,我想注入(inject) JSON.NET 以用作 JSON 类型请求的默认模型绑定(bind)器。

最佳答案

我终于找到了答案。基本上我不需要 MediaTypeFormatter 东西,它不是为在 MVC 环境中使用而设计的,而是在 ASP.NET Web API 中,这就是为什么我看不到那些引用和命名空间(顺便说一句,这些包含在 Microsoft.AspNet.WeApi NuGet 包中)。

解决方案是使用自定义值提供程序工厂。这是所需的代码。

    public class JsonNetValueProviderFactory : ValueProviderFactory
{
public override IValueProvider GetValueProvider(ControllerContext controllerContext)
{
// first make sure we have a valid context
if (controllerContext == null)
throw new ArgumentNullException("controllerContext");

// now make sure we are dealing with a json request
if (!controllerContext.HttpContext.Request.ContentType.StartsWith("application/json", StringComparison.OrdinalIgnoreCase))
return null;

// get a generic stream reader (get reader for the http stream)
var streamReader = new StreamReader(controllerContext.HttpContext.Request.InputStream);
// convert stream reader to a JSON Text Reader
var JSONReader = new JsonTextReader(streamReader);
// tell JSON to read
if (!JSONReader.Read())
return null;

// make a new Json serializer
var JSONSerializer = new JsonSerializer();
// add the dyamic object converter to our serializer
JSONSerializer.Converters.Add(new ExpandoObjectConverter());

// use JSON.NET to deserialize object to a dynamic (expando) object
Object JSONObject;
// if we start with a "[", treat this as an array
if (JSONReader.TokenType == JsonToken.StartArray)
JSONObject = JSONSerializer.Deserialize<List<ExpandoObject>>(JSONReader);
else
JSONObject = JSONSerializer.Deserialize<ExpandoObject>(JSONReader);

// create a backing store to hold all properties for this deserialization
var backingStore = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase);
// add all properties to this backing store
AddToBackingStore(backingStore, String.Empty, JSONObject);
// return the object in a dictionary value provider so the MVC understands it
return new DictionaryValueProvider<object>(backingStore, CultureInfo.CurrentCulture);
}

private static void AddToBackingStore(Dictionary<string, object> backingStore, string prefix, object value)
{
var d = value as IDictionary<string, object>;
if (d != null)
{
foreach (var entry in d)
{
AddToBackingStore(backingStore, MakePropertyKey(prefix, entry.Key), entry.Value);
}
return;
}

var l = value as IList;
if (l != null)
{
for (var i = 0; i < l.Count; i++)
{
AddToBackingStore(backingStore, MakeArrayKey(prefix, i), l[i]);
}
return;
}

// primitive
backingStore[prefix] = value;
}

private static string MakeArrayKey(string prefix, int index)
{
return prefix + "[" + index.ToString(CultureInfo.InvariantCulture) + "]";
}

private static string MakePropertyKey(string prefix, string propertyName)
{
return (String.IsNullOrEmpty(prefix)) ? propertyName : prefix + "." + propertyName;
}
}

您可以在 Application_Start 方法中像这样使用它:

// remove default implementation    
ValueProviderFactories.Factories.Remove(ValueProviderFactories.Factories.OfType<JsonValueProviderFactory>().FirstOrDefault());
// add our custom one
ValueProviderFactories.Factories.Add(new JsonNetValueProviderFactory());

Here是将我指向正确方向的帖子,also this one对值(value)提供者和模型绑定(bind)者给出了很好的解释。

关于c# - 如何在 MVC 5 项目中使用 Json.NET 进行 JSON 模型绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23995210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com