我有一个包含字典性质的模型。 (这已经从一个较大的项目进入这个例子中,我已经证实还是蒸有同样的问题)
public class TestModel
{
public IDictionary<string, string> Values { get; set; }
public TestModel()
{
Values = new Dictionary<string, string>();
}
}
控制器
public class TestController : Controller
{
public ActionResult Index()
{
TestModel model = new TestModel();
model.Values.Add("foo", "bar");
model.Values.Add("fizz", "buzz");
model.Values.Add("hello", "world");
return View(model);
}
[HttpPost]
public ActionResult Index(TestModel model)
{
// model.Values is null after post back here.
return null; // I set a break point here to inspect 'model'
}
}
和的图
@using TestMVC.Models
@model TestModel
@using (Html.BeginForm())
{
@Html.EditorFor(m => m.Values["foo"]);
<br />
@Html.EditorFor(m => m.Values["fizz"]);
<br />
@Html.EditorFor(m => m.Values["hello"]);
<br />
<input type="submit" value="submit" />
}
这使得像这样的浏览器:
<input class="text-box single-line" id="Values_foo_" name="Values[foo]" type="text" value="bar" />
我遇到的问题是,在字典上回发后的模型无效。
我需要有某种形式的键值存储,因为我的屏幕上的字段是可变的,所以我不能使用POCO模型。
Answer 1:
通过阅读以了解更多的细节,但在平均时间的话题斯科特Hanselman的博客文章,以解决您的问题,只需更换您的视图,如下所示:
<input type="hidden" name="Values[0].Key" value="foo" />
<input type="text" name="Values[0].Value" value="bar" />
重复相同的所有部分,也许把它放在一个像循环:
@for(i=0;i<Model.Values.Count;i++)
{
@Html.Hidden("Values[@i].Key", @Model.Values.Keys[@i])
@Html.TextBox("Values[@i].Value", @Model.Values.Values[@i])
}
请注意,您可以通过索引访问键和值只有当你使用OrderedDictionary
Answer 2:
斯科特Hanselman的展示了如何做ModelBinding到词典
http://www.hanselman.com/blog/ASPNETWireFormatForModelBindingToArraysListsCollectionsDictionaries.aspx
从博客引用
如果签名是这样的:
public ActionResult Blah(IDictionary<string, Company> stocks) { // ... }
我们给出这样的HTML:
<input type="text" name="stocks[0].Key" value="MSFT" /> <input type="text" name="stocks[0].Value.CompanyName" value="Microsoft Corporation" /> <input type="text" name="stocks[0].Value.Industry" value="Computer Software" /> <input type="text" name="stocks[1].Key" value="AAPL" /> <input type="text" name="stocks[1].Value.CompanyName" value="Apple, Inc." /> <input type="text" name="stocks[1].Value.Industry" value="Consumer Devices" />
http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx
@model Dictionary<string, string>
@for (int i = 0; i < 3; i++)
{
Html.EditorFor(m => m[i].Value)
{
我想这也将被重点工作,以及如
Html.EditorFor(m => m.Values["foo"].Value)
Answer 3:
如果您需要绑定一个字典,使得每个值有texbox进行编辑,下面是使它工作的一种方式。 其效果如何生成HTML中的name属性真正重要的部分是模型的表达,这是确保绑定发生在回发的模式。 这个例子只适用于字典。
链接的文章解释了HTML语法,使结合的工作,但它留下的剃刀语法来做到这一点相当神秘。 此外,该文章是它们允许键和值进行编辑,并使用即使字典的关键是一个字符串,而不是一个整数的整数索引完全不同。 所以,如果你想绑定一个字典,你真的需要先评估你是否只想值进行编辑,或键和值,你决定采取哪一种方法之前,因为这些情况有很大的不同。
如果你需要绑定到一个复杂的对象,即字典,那么你就应该能够有与表达钻入属性,类似的文章每个属性文本框。
http://www.hanselman.com/blog/ASPNETWireFormatForModelBindingToArraysListsCollectionsDictionaries.aspx
public class SomeVM
{
public Dictionary<string, string> Fields { get; set; }
}
public class HomeController : Controller
{
[HttpGet]
public ViewResult Edit()
{
SomeVM vm = new SomeVM
{
Fields = new Dictionary<string, string>() {
{ "Name1", "Value1"},
{ "Name2", "Value2"}
}
};
return View(vm);
}
[HttpPost]
public ViewResult Edit(SomeVM vm) //Posted values in vm.Fields
{
return View();
}
}
CSHTML:
对于价值观编辑人员只 (当然你可以添加LabelFor生成基于密钥标签):
@model MvcApplication2.Controllers.SomeVM
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>SomeVM</legend>
@foreach(var kvpair in Model.Fields)
{
@Html.EditorFor(m => m.Fields[kvpair.Key]) //html: <input name="Fields[Name1]" …this is how the model binder knows during the post that this textbox value gets stuffed in a dictionary named “Fields”, either a parameter named Fields or a property of a parameter(in this example vm.Fields).
}
<p>
<input type="submit" value="Save" />
</p>
</fieldset>
}
编辑这两个键/值:
@{ var fields = Model.Fields.ToList(); }
@for (int i = 0; i < fields.Count; ++i)
{
//It is important that the variable is named fields, to match the property name in the Post method's viewmodel.
@Html.TextBoxFor(m => fields[i].Key)
@Html.TextBoxFor(m => fields[i].Value)
//generates using integers, even though the dictionary doesn't use integer keys,
//it allows model binder to correlate the textbox for the key with the value textbox:
//<input name="fields[0].Key" ...
//<input name="fields[0].Value" ...
//You could even use javascript to allow user to add additional pairs on the fly, so long as the [0] index is incremented properly
}
Answer 4:
如@Blast_Dan和@gprasant提到的,模型粘合剂期待输入元素的名称属性是在格式Property[index].Value
,其中index
是一个int
和Value
是在所述属性中的一个KeyValuePair
类。
不幸的是, @Html.EditorFor
产生格式错误此值。 我写了一个扩展的HtmlHelper的name属性转换成正确的格式:
public static IHtmlString DictionaryEditorFor<TModel, TProperty, TKey, TValue>(this HtmlHelper<TModel> Html, Expression<Func<TModel, TProperty>> expression, IDictionary<TKey, TValue> dictionary, DictionaryIndexRetrievalCounter<TKey, TValue> counter, string templateName, object additionalViewData)
{
string hiddenKey = Html.HiddenFor(expression).ToHtmlString();
string editorValue = Html.EditorFor(expression, templateName, additionalViewData).ToHtmlString();
string expText = ExpressionHelper.GetExpressionText(expression);
string indexText = expText.Substring(expText.IndexOf('[')).Replace("[", string.Empty).Replace("]", string.Empty);
KeyValuePair<TKey, TValue> item = dictionary.SingleOrDefault(p => p.Key.ToString() == indexText);
int index = counter.GetIndex(item.Key);
string key = hiddenKey.Replace("[" + indexText + "]", "[" + index + "].Key").Replace("value=\"" + item.Value + "\"", "value=\"" + item.Key + "\"");
string value = editorValue.Replace("[" + indexText + "]", "[" + index + "].Value");
return new HtmlString(key + value);
}
因为整数索引必须遵循以下规则:
必须以0开始
必须是完整的(你不能跳过3至5,例如)
我写了一个计数器类来处理得到的整数索引对我来说:
public class DictionaryIndexRetrievalCounter<TKey, TValue>
{
private IDictionary<TKey, TValue> _dictionary;
private IList<TKey> _retrievedKeys;
public DictionaryIndexRetrievalCounter(IDictionary<TKey, TValue> dictionary)
{
this._dictionary = dictionary;
this._retrievedKeys = new List<TKey>();
}
public int GetIndex(TKey key)
{
if (!_retrievedKeys.Contains(key))
{
_retrievedKeys.Add(key);
}
return _retrievedKeys.IndexOf(key);
}
}
文章来源: MVC3 Dictionary not binding to model