gpt4 book ai didi

javascript - 当 ActionResult 从 MVC Controller 返回时,JQuery Ajax post 不会重定向

转载 作者:行者123 更新时间:2023-12-03 11:57:19 24 4
gpt4 key购买 nike

我正在尝试将数据从方法发布到返回操作结果的 MVC Controller ,并将我的站点重定向到正确的 View 。我尝试使用的代码如下。

function KoJqRedirect(item, url, async) {
$.ajax({
type: "Post",
contentType: "application/json",
data: ko.toJSON(item),
async: async,
url: url,
success: function () { return false; }
});

}

Controller 正确发布并返回 View ,问题是页面未显示。当返回成功函数时,我将如何让此页面显示?

最佳答案

如果您想显示从 Controller 操作返回的 html,请执行以下操作:

function KoJqRedirect(item, url, async) {
$.ajax({
type: "post",
contentType: "application/json",
data: ko.toJSON(item),
datatype :'html', //give datatype here
async: async,
url: url,
success: function (data) {
$("#div1").html(data); //provide target div id here
}
});
}

关于javascript - 当 ActionResult 从 MVC Controller 返回时,JQuery Ajax post 不会重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25549395/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com