Index
다른 컨트롤러에서보기 로 리디렉션하는 방법을 찾으려고 노력했습니다 .
public ActionResult Index()
{
ApplicationController viewModel = new ApplicationController();
return RedirectToAction("Index", viewModel);
}
이것이 바로 지금 시도한 것입니다. 이제 내가받은 코드에는 ActionLink
필요한 페이지로 연결되는 링크가 Redirect
있습니다.
@Html.ActionLink("Bally Applications","../Application")
답변
컨트롤러 이름을 가진 과부하도 사용하십시오 …
return RedirectToAction("Index", "MyController");
과
@Html.ActionLink("Link Name","Index", "MyController", null, null)
답변
시험:
public ActionResult Index() {
return RedirectToAction("actionName");
// or
return RedirectToAction("actionName", "controllerName");
// or
return RedirectToAction("actionName", "controllerName", new {/* routeValues, for example: */ id = 5 });
}
그리고 .cshtml
보기 :
@Html.ActionLink("linkText","actionName")
또는:
@Html.ActionLink("linkText","actionName","controllerName")
또는:
@Html.ActionLink("linkText", "actionName", "controllerName",
new { /* routeValues forexample: id = 6 or leave blank or use null */ },
new { /* htmlAttributes forexample: @class = "my-class" or leave blank or use null */ })
공지 사항 이용하여 null
최종 표현에 권장하고, 빈 사용하는 것이 좋습니다되지 않는 new {}
대신을null
답변
답변
오버로드 방법을 사용할 수 있습니다 RedirectToAction(string actionName, string controllerName);
예:
RedirectToAction(nameof(HomeController.Index), "Home");
답변
로컬 리디렉션을 사용할 수 있습니다. 다음 코드는 HomeController의 색인 페이지를 뛰어 넘습니다.
public class SharedController : Controller
{
// GET: /<controller>/
public IActionResult _Layout(string btnLogout)
{
if (btnLogout != null)
{
return LocalRedirect("~/Index");
}
return View();
}
}
답변
완전한 답변 (.Net Core 3.1)
여기에있는 대부분의 답변은 정확하지만 문맥을 약간 벗어난 것이므로 Asp.Net Core 3.1에서 작동하는 본격적인 답변을 제공하겠습니다. 완전성을 위해 :
[Route("health")]
[ApiController]
public class HealthController : Controller
{
[HttpGet("some_health_url")]
public ActionResult SomeHealthMethod() {}
}
[Route("v2")]
[ApiController]
public class V2Controller : Controller
{
[HttpGet("some_url")]
public ActionResult SomeV2Method()
{
return RedirectToAction("SomeHealthMethod", "Health"); // omit "Controller"
}
}
예를 들어 URL 특정 문자열을 사용하려고하면 "some_health_url"
작동하지 않습니다!