0

我是 MVC 的新手,不确定正确的设计。

我有在各种应用程序中使用的类对象。我采用了编写自定义视图模型类的方法,以便可以访问所有这些对象中的属性并具有强类型。如果不在视图模型中重新键入我的所有类代码,有没有办法使用数据注释验证这些对象中的属性?如果我的方法和设计都错了,请告诉我。

[Required]        
public User user = new User("username");
//User has lots properites and methods, could i validate inside my class code?

//我想避免将以下内容放在我的自定义视图模型类中,//因为我已经有一个包含这些内容的类库:

public class User
{

    [Required]
    [StringLength(160)]
    public string prop1 { get; set; }
    [Required]
    [StringLength(160)]
    public string prop2 { get; set; }
    [Required]
    [StringLength(160)]
    public string prop3 { get; set; }

    public User(string token)
    {
        SetUser(token);
    }


    public void SetUser(string token)
    {
        this.prop1 = "this";
        this.prop2 = "this2";
        this.prop3 = "this3";

    }

============ 很高兴知道我可以,但我在一些问题上遇到了挫折。在我看来,我有:@Html.EditorFor(modelItem => modelItem.user.prop1)

我把数据注释的东西放在我的类域中。当它渲染时,它确实显示了注释。

<input class="text-box single-line" data-val="true" data-val-length="The field prop1 must be a string with a maximum length of 5." data-val-length-max="5" data-val-required="The prop1 field is required." id="user_prop1" name="user.prop1" type="text" value="somevalue" />

但是当我去我的控制器时,参数为空。我想是因为名字是user.prop1。我尝试了一个文本框,我在其中指定了 name 属性,但我的控制器仍然无法为我的参数获取值。

=====================

            @model TrainingCalendar.Models.Training

            @{
                ViewBag.Title = "Signup";
            }

            <h2>Signup</h2>

            <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
            <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>

            @using (Html.BeginForm("ConfirmSignup", "Training", FormMethod.Post))
            {
                @Html.ValidationSummary(true)
                <fieldset>
                    <legend>Training</legend>
                    <p>
                    @Html.Label("date", Model.SpecifiedCourse.strClassDate)
                    </p>
                    <p>
                    @Html.Label("time", Model.SpecifiedCourse.Time)
                    </p>
                    <p>
                    @Html.Label("instructor", Model.SpecifiedCourse.Instructor)
                    </p>
                    <p>
                    @Html.Hidden("id", Model.SpecifiedCourse.ID)
                    </p>
                    <table>
                        <tr>
                            <td>@Html.LabelFor(modelItem => modelItem.ApplicationUser.prop1)</td>
                            <td>@Html.EditorFor(modelItem => modelItem.ApplicationUser.prop1)</td>
                            <td style="color:Red">@Html.ValidationMessageFor(modelItem => modelItem.ApplicationUser.prop1)</td>
                        </tr>
                        <tr>
                            <td>@Html.LabelFor(modelItem => modelItem.ApplicationUser.prop2)</td>
                            <td>@Html.EditorFor(modelItem => modelItem.ApplicationUser.prop2)</td>
                            <td style="color:Red">@Html.ValidationMessageFor(modelItem => modelItem.ApplicationUser.prop2)</td>
                        </tr>

                    </table>   
                    <p>
                        <input type="submit" value="Sign Up" />
                    </p>
                </fieldset>
            }

            <div>
                @Html.ActionLink("Back to List", "Index")
            </div>

====================

            public ActionResult ConfirmSignup(
                        int id,
                        string prop1,
                        string prop2)
                    {
                        SignUpForClass();
                    return View();
                }
4

2 回答 2

0

绝对可以在类代码中使用数据注释属性。如果您在视图模型中封装类,请在视图中填充封装类的属性。在验证过程中,将根据您在类声明中指定的数据注释属性验证类成员。

于 2012-07-05T18:31:07.387 回答
0

我也偶然发现了这一点,我最终做的(我不知道它是最好的还是最正确的)也有数据注释,这些注释主要影响我的类库的 DOM 中的数据库,例如 MaxLength、Required、等等,然后在我的视图模型中,我有主要与验证相关的数据注释,例如正则表达式、日期时间格式、最大值或最大长度。通过这种方式,我将系统的两个不同方面的角色分开。视图模型是从我的 DOM 到我的视图可以使用的格式的转换,我的 DOM 专门用于定义数据在数据库中的外观。

于 2012-07-05T19:14:29.520 回答