如何有条件地禁用某些字段的客户端验证?
这是我需要做的示例:
- 用户填写姓名和地址并提交。
- 两者都经过服务器和客户端的验证。如果验证通过,电子邮件将发送到给定地址并存储(名称,地址)对。
- 作为响应显示相同的页面(我不想重定向!)这次确认。用户可以重新输入他们的姓名并提交。在这种情况下,电子邮件将被重新发送到与给定名称对应的地址。
它不起作用,因为:当用户单击第二个(确认屏幕)上的重新发送按钮时,客户端验证将不会通过。它会说电子邮件是必需的,即使没有字段。如何在确认页面发送给用户之前禁用 javascript 验证电子邮件?
示例 ASP.NET MVC 页面
<%if (Model.Confirm == false){ %>
<% using (Html.BeginForm()) { %>
Your email: <%: Html.EditorFor(m => m.Email) %>
Your name: <%: Html.EditorFor(m => m.Name) %>
<input type="submit" value="Send Email" />
<% } %>
<%} else{ %>
The e-mail was send! You can write your name and click button to resend it.
<% using (Html.BeginForm()) { %>
Your name: <%: Html.EditorFor(m => m.Name) %>
<input type="submit" value="Resend me email again" />
<% } %>
<% } %>
在模型中,两者Email
都是Name
强制执行客户端验证的必填字段。
示例控制器操作
public ActionResult Index(){
return new MyModel {Confirm = false;}
}
[HttpPost]
public ActionResult Index(MyModel model){
if(DataHelper.isKnown(model.Name)){
//send e-mail to the address corresponding to name in database
}
if(!ModelState.IsValid) {
return View(model);
}
//Send e-mail to address in email
//store pair name->email to database
model.Confirm = true;
return View(model);
}