是否有使用Ajax的教程或代码示例?在Asp.net MVC 3中不显眼的验证和Ajax存在BeginForm ?
对于MVC 3来说,这是一个难以捉摸的主题,我似乎不能让我的表单正常工作。它将执行Ajax提交,但忽略验证错误。
是否有使用Ajax的教程或代码示例?在Asp.net MVC 3中不显眼的验证和Ajax存在BeginForm ?
对于MVC 3来说,这是一个难以捉摸的主题,我似乎不能让我的表单正常工作。它将执行Ajax提交,但忽略验证错误。
当前回答
Ajax表单使用Javascript异步工作。因此需要加载脚本文件来执行。尽管这是一个很小的性能损失,但执行时没有回发。
我们需要理解Html和Ajax表单的行为之间的区别。
阿贾克斯:
不会重定向表单,即使你做RedirectAction()。 将异步执行保存、更新和任何修改操作。
Html:
将重定向表单。 将同步和异步执行操作(与一些额外的代码和照顾)。
在下面的链接中演示了与POC的差异。 链接
其他回答
我最终得到了达林的解决方案,但首先犯了一些错误,导致了一个类似于大卫的问题(在达林的解决方案下面的评论中),结果是发布到一个新的页面。
因为我必须在方法返回后对表单做一些事情,所以我将它存储起来以供以后使用:
var form = $(this);
然而,这个变量没有在ajax调用中使用的“action”或“method”属性。
$(document).on("submit", "form", function (event) {
var form = $(this);
if (form.valid()) {
$.ajax({
url: form.action, // Not available to 'form' variable
type: form.method, // Not available to 'form' variable
data: form.serialize(),
success: function (html) {
// Do something with the returned html.
}
});
}
event.preventDefault();
});
相反,你需要使用“this”变量:
$.ajax({
url: this.action,
type: this.method,
data: $(this).serialize(),
success: function (html) {
// Do something with the returned html.
}
});
我认为所有的答案都忽略了一个关键点:
如果你使用Ajax表单,所以它需要更新自己(而不是表单外的另一个div),那么你需要把包含的div放在表单外。例如:
<div id="target">
@using (Ajax.BeginForm("MyAction", "MyController",
new AjaxOptions
{
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "target"
}))
{
<!-- whatever -->
}
</div>
否则,您将像@David那样结束,结果将显示在一个新页面中。
Ajax表单使用Javascript异步工作。因此需要加载脚本文件来执行。尽管这是一个很小的性能损失,但执行时没有回发。
我们需要理解Html和Ajax表单的行为之间的区别。
阿贾克斯:
不会重定向表单,即使你做RedirectAction()。 将异步执行保存、更新和任何修改操作。
Html:
将重定向表单。 将同步和异步执行操作(与一些额外的代码和照顾)。
在下面的链接中演示了与POC的差异。 链接
例子:
模型:
public class MyViewModel
{
[Required]
public string Foo { get; set; }
}
控制器:
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new MyViewModel());
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
return Content("Thanks", "text/html");
}
}
观点:
@model AppName.Models.MyViewModel
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.js")" type="text/javascript"></script>
<div id="result"></div>
@using (Ajax.BeginForm(new AjaxOptions { UpdateTargetId = "result" }))
{
@Html.EditorFor(x => x.Foo)
@Html.ValidationMessageFor(x => x.Foo)
<input type="submit" value="OK" />
}
下面是一个更好的例子(在我看来):
观点:
@model AppName.Models.MyViewModel
<script src="@Url.Content("~/Scripts/jquery.validate.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/index.js")" type="text/javascript"></script>
<div id="result"></div>
@using (Html.BeginForm())
{
@Html.EditorFor(x => x.Foo)
@Html.ValidationMessageFor(x => x.Foo)
<input type="submit" value="OK" />
}
index.js:
$(function () {
$('form').submit(function () {
if ($(this).valid()) {
$.ajax({
url: this.action,
type: this.method,
data: $(this).serialize(),
success: function (result) {
$('#result').html(result);
}
});
}
return false;
});
});
这可以通过jQuery表单插件进一步增强。
达林·迪米特洛夫的解决方案对我很有效,只有一个例外。当我提交带有(故意)验证错误的部分视图时,我最终在对话框中返回了重复的表单:
为了解决这个问题,我必须包装Html。在div中BeginForm:
<div id="myForm">
@using (Html.BeginForm("CreateDialog", "SupportClass1", FormMethod.Post, new { @class = "form-horizontal" }))
{
//form contents
}
</div>
当表单被提交时,我清除了成功函数中的div,并输出验证过的表单:
$('form').submit(function () {
if ($(this).valid()) {
$.ajax({
url: this.action,
type: this.method,
data: $(this).serialize(),
success: function (result) {
$('#myForm').html('');
$('#result').html(result);
}
});
}
return false;
});
});