화면 음악 c 리 셋 방식 상세 설명

본 논문 의 사례 는 여러분 에 게 뮤 직 비디오 c 의 방향 을 바 꾸 는 몇 가지 방식 을 공유 하 였 으 며,여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
RouteConfig 에 간단 한 경로 추가

//    
 routes.MapRoute(
 name: "Article",
 url: "Detial/{id}",
 defaults: new { controller = "Article", action = "Detial", id = UrlParameter.Optional },
 constraints: new { id = @"\d+" }
 //namespaces: new string[] { }
);
302 방향 변경

public ActionResult UrlTest1()
 {//302
  return Redirect("/Article/Detial/1");
 }
 public ActionResult UrlTest2()
 {//302
 return RedirectToAction("Detial", "Article", new System.Web.Routing.RouteValueDictionary(new { id = 2 }));
 //return RedirectToAction("Detial", "Article",new { id = 1});
 }
 public ActionResult UrlTest3()
 {//302
 return RedirectToRoute("Article", new System.Web.Routing.RouteValueDictionary(new { id = 3 }));
 //return RedirectToRoute("Article", new { id = 1 });
}


301 방향 변경 

  

public ActionResult UrlTest4()
 {//301
   return RedirectPermanent("/Article/Detial/4");
  }

  public ActionResult UrlTest5()
  {//301
   return RedirectToActionPermanent("Detial", "Article", new System.Web.Routing.RouteValueDictionary(new { id = 5 }));
   //return RedirectToActionPermanent("Detial", "Article", new { id = 1 });
  }

  public ActionResult UrlTest6()
  {//301
   return RedirectToRoutePermanent("Article", new System.Web.Routing.RouteValueDictionary(new { id = 6 }));
   //return RedirectToRoutePermanent("Article", new { id = 1 });
  }
스스로 설정 할 수도 있어 요.

 public ActionResult UrlTest7()
 {//   
  return new RedirectToRouteResult("Article", new System.Web.Routing.RouteValueDictionary(new { id = 7 }), false) { };
 }
 public ActionResult UrlTest8()
 {//   
  return new RedirectResult("/Article/Detial/8", false);
 }
주의해 야 할 것 은 View()에서 서로 다른 보 기 를 지정 하 는 것 은 방향 을 바 꾸 는 것 이 아 닙 니 다.

 public ActionResult UrlTest9()
 {//200
  return View("Detial", null, new { id = 9 });
 }
두 번 째 코드 세그먼트 와 세 번 째 코드 세그먼트 의 방법 은 모두 네 번 째 코드 세그먼트 의 형식 으로 마지막 으로 Response.Redirect 방법 으로 클 라 이언 트 에 게 돌아 갑 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기