asp.net-mvc
Walidacja modelu
Szukaj…
Sprawdź poprawność modelu w ActionResult
[HttpPost]
public ActionResult ContactUs(ContactUsModel contactObject)
{
// This line checks to see if the Model is Valid by verifying each Property in the Model meets the data validation rules
if(ModelState.IsValid)
{
}
return View(contactObject);
}
Klasa modelu
public class ContactUsModel
{
[Required]
public string Name { get; set; }
[Required]
[EmailAddress] // The value must be a valid email address
public string Email { get; set; }
[Required]
[StringLength(500)] // Maximum length of message is 500 characters
public string Message { get; set; }
}
Usuń obiekt z walidacji
Powiedz, że masz następujący model:
public class foo
{
[Required]
public string Email { get; set; }
[Required]
public string Password { get; set; }
[Required]
public string FullName { get; set; }
}
Ale chcesz wykluczyć FullName z walidacji modelu, ponieważ używasz modelu również w miejscu, w którym FullName nie jest wypełnione, możesz to zrobić w następujący sposób:
ModelState.Remove("FullName");
Niestandardowe komunikaty o błędach
Jeśli chcesz podać niestandardowe komunikaty o błędach, wykonaj następujące czynności:
public class LoginViewModel
{
[Required(ErrorMessage = "Please specify an Email Address")]
[EmailAddress(ErrorMessage = "Please specify a valid Email Address")]
public string Email { get; set; }
[Required(ErrorMessage = "Type in your password")]
public string Password { get; set; }
}
Gdy komunikaty o błędach znajdują się w pliku ResourceFile (.resx), musisz określić ResourceType i ResourceName:
public class LoginViewModel
{
[Required(ErrorMessageResourceType = typeof(ErrorResources), ErrorMessageResourceName = "LoginViewModel_RequiredEmail")]
[EmailAddress(ErrorMessageResourceType = typeof(ErrorResources), ErrorMessageResourceName = "LoginViewModel_ValidEmail")]
public string Email { get; set; }
[Required(ErrorMessageResourceType = typeof(ErrorResources), ErrorMessageResourceName = "LoginViewModel_RequiredPassword")]
public string Password { get; set; }
}
Tworzenie niestandardowych komunikatów o błędach w modelu i kontrolerze
Powiedzmy, że masz następującą klasę:
public class PersonInfo
{
public int ID { get; set; }
[Display(Name = "First Name")]
[Required(ErrorMessage = "Please enter your first name!")]
public string FirstName{ get; set; }
[Display(Name = "Last Name")]
[Required(ErrorMessage = "Please enter your last name!")]
public string LastName{ get; set; }
[Display(Name = "Age")]
[Required(ErrorMessage = "Please enter your Email Address!")]
[EmailAddress(ErrorMessage = "Invalid Email Address")]
public string EmailAddress { get; set; }
}
Te niestandardowe komunikaty o błędach pojawią się, jeśli Twój ModelState.IsValid
zwróci false.
Ale zarówno Ty, jak i ja wiem, że może istnieć tylko 1 adres e-mail na osobę, w przeciwnym razie będziesz wysyłać wiadomości e-mail do potencjalnie niewłaściwych osób i / lub wielu osób. W tym momencie rozpoczyna się odprawa kontrolera. Załóżmy więc, że ludzie tworzą konta, które możesz zapisać za pomocą opcji Utwórz akcję.
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "ID, FirstName, LastName, EmailAddress")] PersonInfo newPerson)
{
if(ModelState.IsValid) // this is where the custom error messages on your model will display if return false
{
if(database.People.Any(x => x.EmailAddress == newPerson.EmailAddress)) // checking if the email address that the new person is entering already exists.. if so show this error message
{
ModelState.AddModelError("EmailAddress", "This email address already exists! Please enter a new email address!");
return View(newPerson);
}
db.Person.Add(newPerson);
db.SaveChanges():
return RedirectToAction("Index");
}
return View(newPerson);
}
Mam nadzieję, że to może komuś pomóc!
Walidacja modelu w JQuery.
W przypadkach, w których konieczne jest sprawdzenie poprawności modelu za pomocą Jquery, można użyć funkcji .valid ().
Pola klasy modelu
[Required]
[Display(Name = "Number of Hospitals")]
public int Hospitals{ get; set; }
[Required]
[Display(Name = "Number of Beds")]
public int Beds { get; set; }
Wyświetl kod
@using (Html.BeginForm(new {id = "form1", @class = "form-horizontal" }))
{
<div class="divPanel">
<div class="row">
<div class="col-md-3">
@Html.LabelFor(m => m.Hospitals)
@Html.TextBoxFor(m => m.Hospitals, new { @class = "form-control", @type = "number"})
@Html.ValidationMessageFor(m => m.Hospitals)
</div>
<div class="col-md-3">
@Html.LabelFor(m => m.Beds)
@Html.TextBoxFor(m => m.Beds, new { @class = "form-control", @type = "number"})
@Html.ValidationMessageFor(m => m.Beds)
</div>
<div class="col-md-3">
<button type=button class="btn btn-primary" id="btnCalculateBeds"> Calculate Score</button>
</div>
</div>
</div>
}
Skrypt do sprawdzania poprawności.
$('#btnCalculateBeds').on('click', function (evt) {
evt.preventDefault();
if ($('#form1').valid()) {
//Do Something.
}
}
Upewnij się, że pliki jquery.validate
i jquery.validate.unobtrusive
są obecne w rozwiązaniu.