我是 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();
}