MVC Ajax.BeginForm 调用返回 JsonResult 的操作在客户端上未成功

发布于 2024-11-27 07:43:11 字数 942 浏览 1 评论 0原文

我正在尝试使用 .Net 的 Ajax.BeginForm 提交表单并获取对象列表。

@using (Ajax.BeginForm("ValidateEmployee", new AjaxOptions { OnBegin = "onBegin", OnSuccess = "onSucess", UpdateTargetId = "results"} )

问题是,当我的控制器返回 JsonResult 并将返回的列表转换为 json 时,永远不会调用 OnSuccess 回调,并且 id 为“results”的 div 不会更新。但是 onBegin 回调被调用。控制器看起来像这样。

public JsonResult ValidateEmployee(Employee emp)
{
    ...
    List<Role> roles = new Role();
    foreach(var x in myCollection)
    {
        roles.Add(new Role { ID = x.ID, Name = x.Name });
    }
    return Json(roles);
}

我已经确认 Json(roles) 确实将列表正确转换为有效的 json。但我无法使用它,因为 onSuccess 永远不会运行。

奇怪的是,如果我不将列表转换为 json 而是将其作为 .Net 列表返回,则两个回调都会被命中,并且我的元素会更新输出 System.Collections.Generic.List'1[Models.Role]。所以它不是 json,我没有办法使用这些数据。

那么,当我从控制器返回 json 对象时,为什么 onSuccess 没有被调用呢?

我正在使用 MVC 3 并且引用 jquery.unobtrusive-ajax.js。

感谢您的任何帮助。

I'm trying to use .Net's Ajax.BeginForm to submit a form and get back a list of objects.

@using (Ajax.BeginForm("ValidateEmployee", new AjaxOptions { OnBegin = "onBegin", OnSuccess = "onSucess", UpdateTargetId = "results"} )

Problem is, when my controller returns a JsonResult and I convert my returned list to json, the OnSuccess callback is never called and my div with id "results" is not updated. But the onBegin callback is called. The controller looks like this.

public JsonResult ValidateEmployee(Employee emp)
{
    ...
    List<Role> roles = new Role();
    foreach(var x in myCollection)
    {
        roles.Add(new Role { ID = x.ID, Name = x.Name });
    }
    return Json(roles);
}

I've confirmed that Json(roles) does correctly convert the list into valid json. But I can't use it because onSuccess never runs.

Strangely, if I don't convert the list to json and just return it as a .Net list, both callbacks are hit and my element to update outputs System.Collections.Generic.List'1[Models.Role]. So it's not json and I don't have a way to use the data.

So why is onSuccess not being called when I return a json object from my controller?

I'm using MVC 3 and I'm referencing jquery.unobtrusive-ajax.js.

Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我爱人 2024-12-04 07:43:11

我认为您不能将 Ajax.BeginFormUpdateTargetId 用于您的场景,因为您使用 JsonResult 作为操作的结果。 Ajax.BeginForm,给定 UpdateTargetId 将尝试将结果对象附加到您指定的元素。由于返回的是 Json 对象,因此会引发错误。错误将类似于:

    uncaught exception: [Exception... "Could not convert JavaScript argument arg 0 
[nsIDOMDocumentFragment.appendChild]" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)"
 location: "JS frame :: http://localhost:58248/Scripts/jquery-1.4.4.js :: <TOP_LEVEL> :: 
line 5167" data: no]

一旦 UpdateTargetId 被删除,您应该会看到 onSuccess 被触发。

function onSuccess(data){
 //data is the json object
 // do your html manipulation here
}

I don't think you can use Ajax.BeginForm with UpdateTargetId for your scenario as you are using JsonResult as the result of the action. Ajax.BeginForm, given UpdateTargetId will try to append the resulting object to the element that you have specified. Since the returning is Json object it throws an error. The error will be something like:

    uncaught exception: [Exception... "Could not convert JavaScript argument arg 0 
[nsIDOMDocumentFragment.appendChild]" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)"
 location: "JS frame :: http://localhost:58248/Scripts/jquery-1.4.4.js :: <TOP_LEVEL> :: 
line 5167" data: no]

Once UpdateTargetId removed you should see the onSuccess being fired.

function onSuccess(data){
 //data is the json object
 // do your html manipulation here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文