gpt4 book ai didi

c# - 使用 Ajax 以 guid 作为键的 .NET MVC 字典绑定(bind)问题

转载 作者:行者123 更新时间:2023-11-30 17:48:14 25 4
gpt4 key购买 nike

我创建了以下简化场景来最好地描述我的问题。我有这两个 C# 类:

public class ClassOne
{
public Dictionary<string, Guid> Dict { get; set; }
}

public class ClassTwo
{
public Dictionary<Guid, string> Dict { get; set; }
}

我还有以下两个 Action :

    public ActionResult ActionOne(ClassOne model)
{

// do some work here...

return RedirectToAction("Index");

}

public ActionResult ActionTwo(ClassTwo model)
{

// do some work here...

return RedirectToAction("Index");

}

最后是以下 JavaScript:

        var MyObject = {}

MyObject.Dict = {}

MyObject.Dict["c5a9f7a4-312a-45bd-9fc6-1e41fcd89764"] = "c5a9f7a4-312a-45bd-9fc6-1e41fcd89764";
MyObject.Dict["dc992a24-5613-4381-b199-7d4ebadb0635"] = "dc992a24-5613-4381-b199-7d4ebadb0635";
MyObject.Dict["c01d8501-e121-4b2d-80c5-8305bcec7aff"] = "c01d8501-e121-4b2d-80c5-8305bcec7aff";

$.ajax({
url: $(this).attr("action"),
type: "POST",
data: JSON.stringify(MyObject),
contentType: "application/json; charset=utf-8",
beforeSend: function () {
// do nothing
},
success: function (data) {
// success
},
error: function (jqXHR, textStatus, errorThrown) {
console.log(textStatus, errorThrown);
}
});

为了简单起见,我省略了将 Ajax 调用路由到 ActionOne 或 ActionTwo 的 JavaScript。当 Ajax 调用路由到 ActionOne 时,我得到以下信息:

ActionOne

这是我所期望的。但是,当将 Ajax 调用路由到 ActionTwo 时(因此我希望使用它创建 ClassTwo 的实例 Dictionary<Guid, string> )我得到以下信息:

ActionTwo

这不是我所期待的。我在这里错过了一些基本的东西吗?为什么字典无法填充?任何指导将不胜感激。谢谢。

最佳答案

好的,我已经确定了问题所在,但是除了为具有 Dictionary<Guid, string> 的此类执行您自己的自定义模型绑定(bind)之外,对于如何解决此问题没有很好的答案。属性(或至少对该特定属性进行自定义绑定(bind))。

DefaultModelBinder ,在 ClassOne 的情况下或 ClassTwo , 它正确地将其识别为包含 Dictionary<TKey, TValue>属性,然后落入 UpdateDictionary() 内的 if block 中:

if (modelList.Count == 0)
{
IEnumerableValueProvider enumerableValueProvider = bindingContext.ValueProvider as IEnumerableValueProvider;
if (enumerableValueProvider != null)
{
IDictionary<string, string> keys = enumerableValueProvider.GetKeysFromPrefix(bindingContext.ModelName);
foreach (var thisKey in keys)
{
modelList.Add(CreateEntryForModel(controllerContext, bindingContext, valueType, valueBinder, thisKey.Value, thisKey.Key));
}
}
}

// replace the original collection
object dictionary = bindingContext.Model;
CollectionHelpers.ReplaceDictionary(keyType, valueType, dictionary, modelList);
return dictionary;

ClassTwo 的问题来电CollectionHelpers.ReplaceDictionary() ,最终调用这个:

private static void ReplaceDictionaryImpl<TKey, TValue>(IDictionary<TKey, TValue> dictionary, IEnumerable<KeyValuePair<object, object>> newContents)
{
dictionary.Clear();
foreach (KeyValuePair<object, object> item in newContents)
{
if (item.Key is TKey)
{
// if the item was not a T, some conversion failed. the error message will be propagated,
// but in the meanwhile we need to make a placeholder element in the dictionary.
TKey castKey = (TKey)item.Key; // this cast shouldn't fail
TValue castValue = (item.Value is TValue) ? (TValue)item.Value : default(TValue);
dictionary[castKey] = castValue;
}
}
}

对于 ClassTwo , newContents IEnumerable 中的键是字符串类型,不能隐式转换为Guid类型,因此每个项目都无法通过 if (item.Key is TKey)检查,因此没有任何内容被添加到字典中。

这本无价的 MSDN 杂志 article在子标题“Where Model Binding Seems to Fall Down”下确切地说明了为什么你在这里失败,因为你的 JSON POST 数据成为它的受害者(你只是进入这个代码块,因为绑定(bind)上下文找不到像这样的项目Dict[0].key .

如果您希望默认模型绑定(bind)器识别您的类型(即,如果您发布此内容,您的 ClassTwo 实例将在其 Dict 属性中包含三个记录):

"{"Dict[0].key": "c5a9f7a4-312a-45bd-9fc6-1e41fcd89764", "Dict[0].value": "c5a9f7a4-312a-45bd-9fc6-1e41fcd89764", "Dict[1].key": "dc992a24-5613-4381-b199-7d4ebadb0635", "Dict[1].value": "dc992a24-5613-4381-b199-7d4ebadb0635", "Dict[2].key": "c01d8501-e121-4b2d-80c5-8305bcec7aff", "Dict[2].value": "c01d8501-e121-4b2d-80c5-8305bcec7aff"}"

这适用于 ClassOne因为你的 key 已经是一个字符串,它可以正确地找出项目的类型 ( Guid )。问题是对于 ClassTwo ,因为键不是字符串(并且不能隐式转换为字符串),所以您永远不会在字典中获得任何值。

如果您不想尝试将您的 JSON 转换为 DefaultModelBinder 无法使用的格式可以处理,我建议为 Dictionary<Guid, string> 创建一个自定义模型 Binder 在此 SO answer 中概述类型.

关于c# - 使用 Ajax 以 guid 作为键的 .NET MVC 字典绑定(bind)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23368434/

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