ASP.NET MVC视图模型中的默认值


69

我有这个模型:

public class SearchModel
{
    [DefaultValue(true)]
    public bool IsMale { get; set; }
    [DefaultValue(true)]
    public bool IsFemale { get; set; }
}

但是根据我在这里的研究和解答,DefaultValueAttribute实际上并没有设置默认值。但是这些答案来自2008年。有没有一种属性或比传递给视图时使用私有字段将这些值设置为true更好的方法?

反正这是视图:

@using (Html.BeginForm("Search", "Users", FormMethod.Get))
{
<div>
    @Html.LabelFor(m => Model.IsMale)
    @Html.CheckBoxFor(m => Model.IsMale)
    <input type="submit" value="search"/>
</div>
}

Answers:


125

在构造函数中设置:

public class SearchModel
{
    public bool IsMale { get; set; }
    public bool IsFemale { get; set; }

    public SearchModel()
    { 
        IsMale = true;
        IsFemale = true;
    }
}

然后将其传递给您的GET操作中的视图:

[HttpGet]
public ActionResult Search()
{
    return new View(new SearchModel());
}

这还会将值初始化为您在数据库中设置的值吗?还是只是在物体上?
Zapnologica

1
@Zapnologica这是作为ViewModel编写的,它独立于数据支持的模型而存在。实际上,您可以创建ViewModel,并使用从数据库条目中提取的值(使用数据支持的模型)覆盖这些默认值,但按原样,它将始终使用这些默认值。现在,当浏览器将其作为已发布表单的一部分提交时,您将如何处理该数据(无论是将其保存到数据库还是其他)。
Aejay 2014年

如果我用两个参数重载构造函数并仅在控制器中设置默认属性,此方法是否可行?
Celdor 2014年

@Celdor我使用了它,但是用一个对象作为参数重载了构造函数,在控制器中设置了这个对象,就像一个魅力。ViewModel的值设置为我给构造函数提供的对象的值。(我猜使用2个参数并没有太大区别)
dmg_

21

使用特定值:

[Display(Name = "Date")]
public DateTime EntryDate {get; set;} = DateTime.Now;//by C# v6

17

ViewModels使用以下构造函数代码为您创建一个基类,该代码将在DefaultValueAttributes创建任何继承模型时应用。

public abstract class BaseViewModel
{
    protected BaseViewModel()
    {
        // apply any DefaultValueAttribute settings to their properties
        var propertyInfos = this.GetType().GetProperties();
        foreach (var propertyInfo in propertyInfos)
        {
            var attributes = propertyInfo.GetCustomAttributes(typeof(DefaultValueAttribute), true);
            if (attributes.Any())
            {
                var attribute = (DefaultValueAttribute) attributes[0];
                propertyInfo.SetValue(this, attribute.Value, null);
            }
        }
    }
}

并在您的ViewModels中继承自此:

public class SearchModel : BaseViewModel
{
    [DefaultValue(true)]
    public bool IsMale { get; set; }
    [DefaultValue(true)]
    public bool IsFemale { get; set; }
}

3
尽管这是一个聪明的解决方案,但我建议使用C#6,最好使用(性能更高的)自动属性初始化程序,例如:public bool IsMale { get; set; } = true
Chris Haines

2

如果您需要将同一模型发布到服务器,则bool在构造函数中具有默认值的解决方案将不可行。假设您有以下模型:

public class SearchModel
{
    public bool IsMale { get; set; }

    public SearchModel()
    { 
        IsMale = true;
    }
}

在视图上,您​​将看到以下内容:

@Html.CheckBoxFor(n => n.IsMale)

问题是,当用户取消选中此复选框并将其发布到服务器时,最终将在构造函数中设置默认值(在这种情况下为true)。

因此,在这种情况下,我最终将只在视图上指定默认值:

@Html.CheckBoxFor(n => n.IsMale, new { @checked = "checked" })

1
<div class="form-group">
                    <label asp-for="Password"></label>
                    <input asp-for="Password"  value="Pass@123" readonly class="form-control" />
                    <span asp-validation-for="Password" class="text-danger"></span>
                </div>

使用:value =“ Pass @ 123”作为.net核心中输入的默认值


-2

你会有什么?您可能最终会得到默认搜索以及从某个位置加载的搜索。默认搜索需要默认构造函数,因此建议使用Dismissile。

如果从其他位置加载搜索条件,则可能应该具有一些映射逻辑。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.