0
單擊超鏈接時,我想在應用業務邏輯後導航到頁面。目前,mvc動作中的「返回重定向(Url)」不會導航到該頁面。MVC重定向不會導航到頁面
$("a").bind("click", function (e) {
e.preventDefault();
gotoUrl($, this.href);
});
gotoUrl: function ($, href) {
$.ajax({
type: "POST",
url: 'mycontroller/myaction',
data: { url: href },
dataType: 'json',
cache: false
success: function (data) { }
});
}
//mycontroller
[HttpPost]
public ActionResult myaction(string url)
{
//Some business logic here to update url
return Redirect(url);
}