Ajax.BeginForm 数据类型 json

发布于 2024-11-24 02:00:26 字数 202 浏览 0 评论 0原文

由于 Ajax.BeginForm 只是 jQuery.ajax() 调用的包装器,是否有如何在底层 ajax() 对象上设置 dataType 属性?特别是我想设置 dataType="json" 以便它可以处理 json 响应。

谢谢, 罗马

Since, Ajax.BeginForm is just a wrapper around jQuery.ajax() call, is there a way to set the dataType property on the underlying ajax() object? In particular I want to set dataType="json" so that it can handle json responses.

Thanks,
Roman

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

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

发布评论

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

评论(1

你怎么敢 2024-12-01 02:00:26

似乎可以(jQuery 1.5.1):

<script type="text/javascript">
    function success(result) {
        alert(result.Bar);
    }
</script>

@using (Ajax.BeginForm("Foo", new AjaxOptions { OnSuccess = "success" }))
{
    <input type="submit" value="OK" />
}

并且该操作将返回 JSON:

[HttpPost]
public ActionResult Foo()
{
    return Json(new { Bar = "baz" });
}

It seems that it can (jQuery 1.5.1):

<script type="text/javascript">
    function success(result) {
        alert(result.Bar);
    }
</script>

@using (Ajax.BeginForm("Foo", new AjaxOptions { OnSuccess = "success" }))
{
    <input type="submit" value="OK" />
}

and the action would return JSON:

[HttpPost]
public ActionResult Foo()
{
    return Json(new { Bar = "baz" });
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文