请帮助我以下代码。 Model类正在使用System.ComponentModel.DataAnnotation

namespace Proj.Models
{
    public class Customer
    {
        [Required]
        public string CustomerID{get;set;}

        [Required]
        public string CustomerName{get;set;}
    }
}


我使用此模型创建了一个控制器,其操作方法为:

public class Customer:Controller
{
    public ActionResult Details()
    {
        return View();
    }
}


剃刀视图是Details.cshtml,具有以下标记和代码:

@model Proj.Models.Customer

<form method="post">

@Html.EditorForModel()

<button>Submit!!</button>

</form>


但是,当我单击“提交”时,没有看到验证错误。

最佳答案

您需要创建一个将模型作为输入的方法,如下所示:

[HttpPost]
public ActionResult Index(Customer customer)
{
    return View();
}


[HttpPost]确保仅在POST请求上调用该方法。

08-08 04:21
查看更多