假设我有一些页面
some.web/articles/details/5
some.web/users/info/bob
some.web/foo/bar/7
可以调用像
这样的通用实用程序控制器 locale/change/es
或authorization/login
如何通过这些方法(change
,login
)重定向到之前的操作(details
,info
,bar
)之前的参数(5
,bob
,7
)?
简而言之:如何在另一个控制器中执行操作后重定向到我刚刚访问过的页面?
答案 0 :(得分:144)
尝试:
public ActionResult MyNextAction()
{
return Redirect(Request.UrlReferrer.ToString());
}
另外,谈到达林说的话,试试这个:
public ActionResult MyFirstAction()
{
return RedirectToAction("MyNextAction",
new { r = Request.Url.ToString() });
}
然后:
public ActionResult MyNextAction()
{
return Redirect(Request.QueryString["r"]);
}
答案 1 :(得分:40)
如果您想从视图中的按钮重定向,可以使用:
@Html.ActionLink("Back to previous page", null, null, null, new { href = Request.UrlReferrer})
答案 2 :(得分:27)
如果您不关心单元测试,那么您只需写下:
return Redirect(ControllerContext.HttpContext.Request.UrlReferrer.ToString());
答案 3 :(得分:9)
关于如何执行此操作的建议:
public ActionResult Create(string returnUrl)
{
// If no return url supplied, use referrer url.
// Protect against endless loop by checking for empty referrer.
if (String.IsNullOrEmpty(returnUrl)
&& Request.UrlReferrer != null
&& Request.UrlReferrer.ToString().Length > 0)
{
return RedirectToAction("Create",
new { returnUrl = Request.UrlReferrer.ToString() });
}
// Do stuff...
MyEntity entity = GetNewEntity();
return View(entity);
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(MyEntity entity, string returnUrl)
{
try
{
// TODO: add create logic here
// If redirect supplied, then do it, otherwise use a default
if (!String.IsNullOrEmpty(returnUrl))
return Redirect(returnUrl);
else
return RedirectToAction("Index");
}
catch
{
return View(); // Reshow this view, with errors
}
}
您可以在视图中使用重定向,如下所示:
<% if (!String.IsNullOrEmpty(Request.QueryString["returnUrl"])) %>
<% { %>
<a href="<%= Request.QueryString["returnUrl"] %>">Return</a>
<% } %>
答案 4 :(得分:6)
将returnUrl参数(url编码)传递给更改和登录操作,并将内部重定向到此给定的returnUrl。您的登录操作可能如下所示:
public ActionResult Login(string returnUrl)
{
// Do something...
return Redirect(returnUrl);
}
答案 5 :(得分:6)
在Mvc中使用简单的html 在View Page 中使用java脚本onclick
<input type="button" value="GO BACK" class="btn btn-primary"
onclick="location.href='@Request.UrlReferrer'" />
这很有效。希望帮助某人。
@JuanPieterse已使用@Html.ActionLink
回答,如果可能,有人可以使用@Url.Action
发表评论或回答
答案 6 :(得分:5)
我正在使用.Net Core 2 MVC,这个对我有用,
在控制器中使用
HttpContext.Request.Headers["Referer"];
答案 7 :(得分:1)
您可以使用ViewBag.ReturnUrl
属性返回上一页。
答案 8 :(得分:1)
要在任何视图中动态构造returnUrl,请尝试以下方法:
@{
var formCollection =
new FormCollection
{
new FormCollection(Request.Form),
new FormCollection(Request.QueryString)
};
var parameters = new RouteValueDictionary();
formCollection.AllKeys
.Select(k => new KeyValuePair<string, string>(k, formCollection[k])).ToList()
.ForEach(p => parameters.Add(p.Key, p.Value));
}
<!-- Option #1 -->
@Html.ActionLink("Option #1", "Action", "Controller", parameters, null)
<!-- Option #2 -->
<a href="/Controller/Action/@object.ID?returnUrl=@Url.Action(ViewContext.RouteData.Values["action"].ToString(), ViewContext.RouteData.Values["controller"].ToString(), parameters)">Option #2</a>
<!-- Option #3 -->
<a href="@Url.Action("Action", "Controller", new { object.ID, returnUrl = Url.Action(ViewContext.RouteData.Values["action"].ToString(), ViewContext.RouteData.Values["controller"].ToString(), parameters) }, null)">Option #3</a>
这也适用于布局页面,部分视图和Html助手
相关:MVC3 Dynamic Return URL(相同但来自任何Controller / Action)
答案 9 :(得分:0)
对于 ASP.NET Core 您可以使用asp-route- *属性:
<form asp-action="Login" asp-route-previous="@Model.ReturnUrl">
其他详细信息示例: 想象一下,您有一个带动作的车辆控制器
索引
详细信息
编辑
,您可以从“索引”或“详细信息”编辑任何车辆,因此,如果您单击“从索引编辑”,则必须在编辑后返回索引 并且如果您单击了详细信息中的编辑,则必须在编辑后返回详细信息。
//In your viewmodel add the ReturnUrl Property
public class VehicleViewModel
{
..............
..............
public string ReturnUrl {get;set;}
}
Details.cshtml
<a asp-action="Edit" asp-route-previous="Details" asp-route-id="@Model.CarId">Edit</a>
Index.cshtml
<a asp-action="Edit" asp-route-previous="Index" asp-route-id="@item.CarId">Edit</a>
Edit.cshtml
<form asp-action="Edit" asp-route-previous="@Model.ReturnUrl" class="form-horizontal">
<div class="box-footer">
<a asp-action="@Model.ReturnUrl" class="btn btn-default">Back to List</a>
<button type="submit" value="Save" class="btn btn-warning pull-right">Save</button>
</div>
</form>
在您的控制器中:
// GET: Vehicle/Edit/5
public ActionResult Edit(int id,string previous)
{
var model = this.UnitOfWork.CarsRepository.GetAllByCarId(id).FirstOrDefault();
var viewModel = this.Mapper.Map<VehicleViewModel>(model);//if you using automapper
//or by this code if you are not use automapper
var viewModel = new VehicleViewModel();
if (!string.IsNullOrWhiteSpace(previous)
viewModel.ReturnUrl = previous;
else
viewModel.ReturnUrl = "Index";
return View(viewModel);
}
[HttpPost]
public IActionResult Edit(VehicleViewModel model, string previous)
{
if (!string.IsNullOrWhiteSpace(previous))
model.ReturnUrl = previous;
else
model.ReturnUrl = "Index";
.............
.............
return RedirectToAction(model.ReturnUrl);
}