簡體   English   中英

驗證ASP.NET MVC表單時回發

[英]Postback when validating ASP.NET MVC Form

我使用asp.net mvc腳手架創建了一個Web表單表單,如果沒有回發,它將無法進行客戶端驗證。 [Required()]正在回發,[EmailAddress]驗證器正在客戶端驗證。 我正在使用Visual Studio 2013和帶有ef6的asp.net mvc 5。 這是我的模型課:

namespace WebApplication4.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

public partial class Tutor
{
    public Tutor()
    {
        this.Examinations = new HashSet<Examination>();
    }


    public decimal TutorID { get; set; }

    [Display(Name = "First Name ")]
    [Required(ErrorMessage = "Please Enter First Name.")]
    [DataType(DataType.Text)]
    public string FirstName { get; set; }

    [Display(Name = "Last Name ")]
    [Required(ErrorMessage = "Please Enter Last Name.")]
    [DataType(DataType.Text)]
    public string LastName { get; set; }

    [Display(Name = "Address Line 1 ")]
    [Required(ErrorMessage = "Please Enter Address Line 1.")]
    [DataType(DataType.Text)]
    public string Address1 { get; set; }

    [Display(Name = "Address Line 2 ")]
    [Required(ErrorMessage = "Please Enter Address Line 2.")]
    [DataType(DataType.Text)]
    public string Address2 { get; set; }

    [Display(Name = "Address Line 3 ")]
    public string Address3 { get; set; }

    [Display(Name = "Telephone 1 ")]
    [Required(ErrorMessage = "Please Enter Telephone No.")]
    [DataType(DataType.Text)]
    public string Tel1 { get; set; }

    [Display(Name = "Telephone 2 ")]
    [DataType(DataType.Text)]
    public string Tel2 { get; set; }

    [Display(Name = "Email Address")]
    [Required(ErrorMessage = "Please Enter E Mail Address.")]
    [EmailAddress(ErrorMessage = "Invalid Email Address")]
    [DataType(DataType.EmailAddress)]
    public string EMail { get; set; }

    [Display(Name = "Password ")]
    [DataType(DataType.Password)]
    public string Password { get; set; }
    public Nullable<bool> IsConfirmed { get; set; }

     public virtual ICollection<Examination> Examinations { get; set; }
    }
}

這是我在控制器中的控制器Create()方法:

    // GET: /Default1/Create
    public ActionResult Create()
    {
        return View();
    }

    // POST: /Default1/Create

    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Create([Bind(Include="TutorID,FirstName,LastName,Address1,Address2,Address3,Tel1,Tel2,EMail,Password,IsConfirmed")] Tutor tutor)
    {
        if (ModelState.IsValid)
        {
            db.Tutors.Add(tutor);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        return View(tutor);
    }

這是用於創建的視圖...

  @model WebApplication4.Models.Tutor

  @{
     ViewBag.Title = "Create";
     Layout = "~/Views/Shared/_Layout.cshtml";
   }

   <h2>Create</h2>


   @using (Html.BeginForm()) 
    {
     @Html.AntiForgeryToken()

     <div class="form-horizontal">
      <h4>Tutor</h4>
      <hr />
      @Html.ValidationSummary(true)

      <div class="form-group">
        @Html.LabelFor(model => model.FirstName, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.FirstName)
            @Html.ValidationMessageFor(model => model.FirstName)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.LastName, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.LastName)
            @Html.ValidationMessageFor(model => model.LastName)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Address1, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Address1)
            @Html.ValidationMessageFor(model => model.Address1)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Address2, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Address2)
            @Html.ValidationMessageFor(model => model.Address2)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Address3, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Address3)
            @Html.ValidationMessageFor(model => model.Address3)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Tel1, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Tel1)
            @Html.ValidationMessageFor(model => model.Tel1)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Tel2, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Tel2)
            @Html.ValidationMessageFor(model => model.Tel2)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.EMail, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.EMail)
            @Html.ValidationMessageFor(model => model.EMail)
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Password, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Password)
            @Html.ValidationMessageFor(model => model.Password)
        </div>
    </div>



    <div class="form-group">
        <div class="col-md-offset-2 col-md-10">
            <input type="submit" value="Create" class="btn btn-default" />
        </div>
    </div>
</div>
}

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

@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}

我想驗證客戶端中的所有內容。

確保正確加載jquery.validate.js庫

BundleConfig.cs

bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
                        "~/Scripts/jquery.unobtrusive*",
                        "~/Scripts/jquery.validate*"));

在頁面末尾

@Scripts.Render("~/bundles/jqueryval")

解決方案是使用jquery.validate.unobtrusive.js。

加載表單后,在准備好文檔上使用jquery時,應解析該表單

//file: your view file
@model Tutor

<script>
$(document).ready(function() {
   $.validator.unobtrusive.parse($("#frm1"));
}

function onSubmit(e) {
  $("#frm1").validate(); // this will validate the form and show the validation messages
  if($("#frm1").valid()) {
     $("#frm1").submit(); // submits the form
  }
  return false;//prevent default submit of form by returning false.
  //also e.preventDefault() can be used.
}
</script>

//for understanding purpose using the plain form tag.
//one can use  @using (Html.BeginForm())

<form id="frm1" onsubmit="onSubmit();">
<!-- your content goes here -->
   <div class="form-group">
        @Html.LabelFor(model => model.FirstName, new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.FirstName)
            @Html.ValidationMessageFor(model => model.FirstName)
        </div>
    </div>

</form>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM