从asp.net mvc中的已发布数据中删除前缀

时间:2015-04-22 18:34:02

标签: asp.net-mvc asp.net-mvc-4 model-view-controller modelbinder

我的视图如下所示。每个字段都在name属性中附加了前缀,但我后端的模型具有不带前缀的属性。

@using (Html.BeginForm("Save", "Home", FormMethod.Post))
{
    @Html.ValidationSummary(true)
    <fieldset>
        <input type="hidden" name="prefix" value="prefix"/>
        <input type="text" id="prefix.Name" name="prefix.Name"/>
        <input type="submit" value="submit" />
    </fieldset>
}

我的行动方法如下所示:

public ActionResult Save([ModelBinder(typeof(CustomModelBinder))]Employee employee)
        {
            throw new NotImplementedException();
        }

我的模型看起来像:

public class Employee
    {
        public string Name { get; set; }
    }

有人可以帮我解决如何通过自定义模型绑定器实现这一点,我想从每个已发布的表单项名称中删除前缀。

发布表单数据:

prefix:prefix
prefix.Name:Hello World!!

我也试过下面的代码,但它不起作用。有人可以解释这里有什么不对。

public ActionResult Save([Bind(Prefix = "prefix")]Employee employee)
        {
            throw new NotImplementedException();
        }

2 个答案:

答案 0 :(得分:0)

你可以使用BindAttribute作为他的

public ActionResult Submit([Bind(Prefix = "L")] string[] longPropertyName) {

}

这里有一个类似的问题: Asp.Net MVC 2 - Bind a model's property to a different named value

答案 1 :(得分:0)

有一些奇怪的行为,当我改变我的前缀值时,它开始工作。

public ActionResult Save([Bind(Prefix = "**someothervalue**")]Employee employee)
        {
            throw new NotImplementedException();
        }

感谢大家的帮助。