无需数据库的 MVC2 验证

发布于 2024-10-19 02:23:53 字数 39 浏览 0 评论 0原文

我们可以在没有数据库的情况下仅使用模型来显示 MVC2 验证吗?

Can we show MVC2 validation without database, just having the Model?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

深海里的那抹蓝 2024-10-26 02:23:53

是的。您只需 添加手动将数据注释添加到您的模型中。无需数据库。

Yes. You just have to add the Data Annotations by hand to your Model. No database required.

白首有我共你 2024-10-26 02:23:53

您可以在您的项目中使用数据注释模型属性,例如:

[Required]
[MaxLength(50)]
public string Name { get; set; }

如果字段为空或超过最大长度,则模型绑定器会将错误添加到模型中。

另一种选择是您手动添加错误,

public ActionResult method(MyModel model)
{
    if(model.AnswerToLifeUniverseAndAll!=42)
    {
      ModelState.AddModelError("Id_Of_The_Html_Elemet","Wrong Answer");
      return View(model);

这将返回到用户提交的视图,并在具有所提供 ID 的字段旁边显示“错误答案”错误。

You could use Data Annotations in your model properties, such as:

[Required]
[MaxLength(50)]
public string Name { get; set; }

The model binder would then add the erros to the model if the field is empty or exceeds the maxlength.

Another option is for you to add your errors manually

public ActionResult method(MyModel model)
{
    if(model.AnswerToLifeUniverseAndAll!=42)
    {
      ModelState.AddModelError("Id_Of_The_Html_Elemet","Wrong Answer");
      return View(model);

this will get back to the view the user submitted, and will show the "Wrong Answer" error next to the field that has the provided Id.

箹锭⒈辈孓 2024-10-26 02:23:53

是的,您不需要数据库。这是一个示例

public class MyModel { 

     [Required]
     public int ID {get; set; }
     [StringLength(30)]
     public string Name {get; set; }
     public int Age {get; set; }

}

在您创建或编辑视图时,该视图将被强制键入此类,验证将正常工作。

yes you do not need a database. here is an example of it

public class MyModel { 

     [Required]
     public int ID {get; set; }
     [StringLength(30)]
     public string Name {get; set; }
     public int Age {get; set; }

}

On you create or edit view which will be strogly typed to this class, the validation will work fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文