当前位置:  开发笔记 > 前端 > 正文

UpdateModel前缀 - ASP.NET MVC

如何解决《UpdateModel前缀-ASP.NETMVC》经验,为你挑选了1个好方法。

我遇到了麻烦TryUpdateModel().我的表单字段以前缀命名,但我使用 - 作为我的分隔符而不是默认点.


当我尝试更新模型时,它不会更新.如果我更改名称属性,Record.Title它可以完美地工作,但这不是我想要做的.

bool success = TryUpdateModel(record, "Record");

是否可以使用自定义分隔符?



1> Todd Smith..:

另外需要注意的是,前缀是帮助反射找到要更新的正确字段.例如,如果我的ViewData有一个自定义类,例如:

public class Customer
{
    public string FirstName {get; set;}
    public string LastName {get; set;}
}

public class MyCustomViewData
{
    public Customer Customer {get; set;}
    public Address Address {get; set;}
    public string Comment {get; set;}
}

我的页面上有一个文本框

<%= Html.TextBox("FirstName", ViewData.Model.Customer.FirstName) %>

要么

<%= Html.TextBox("Customer.FirstName", ViewData.Model.Customer.FirstName) %>

这是有效的

public ActionResult Save (Formcollection form)
{
    MyCustomViewData model = GetModel(); // get our model data

    TryUpdateModel(model, form); // works for name="Customer.FirstName" only
    TryUpdateModel(model.Customer, form) // works for name="FirstName" only
    TryUpdateModel(model.Customer, "Customer", form); // works for name="Customer.FirstName" only
    TryUpdateModel(model, "Customer", form) // do not work

    ..snip..
}

推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有