MVC 4创建蛞蝓型网址(MVC 4 creating slug type url)

2019-09-01 06:42发布

我试图创建一个类似URL一个计算器。

我下面的例子中正常工作。 但是,如果我删除控制器则出现了错误。

http://localhost:12719/Thread/Thread/500/slug-url-text

注意第一个线程控制器二是行动。

我怎样才能使上述网址看起来像从URL排除控制器名称下面?

 http://localhost:12719/Thread/500/slug-url-text

我的路线

   public class RouteConfig
   {
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute("Default", // Route name
             "{controller}/{action}/{id}/{ignoreThisBit}",
             new
             {
                 controller = "Home",
                 action = "Index",
                 id = "",
                 ignoreThisBit = ""
             });  // Parameter defaults )


    }
 }

线程控制器

 public class ThreadController : Controller
 {
    //
    // GET: /Thread/

    public ActionResult Index()
    {

        string s = URLFriendly("slug-url-text");
        string url = "Thread/" + 500 + "/" + s;
        return RedirectPermanent(url);

    }

    public ActionResult Thread(int id, string slug)
    {

        return View("Index");
    }

}

Answer 1:

默认路由定义之前将下面的路线将直接调用与“ID”“主题”控制器和“塞”参数“主题”行动。

routes.MapRoute(
    name: "Thread",
    url: "Thread/{id}/{slug}",
    defaults: new { controller = "Thread", action = "Thread", slug = UrlParameter.Optional },
    constraints: new { id = @"\d+" }
);

那么,如果你真的想成为像计算器,并假设有人进入ID一部分,而不是塞部分,

public ActionResult Thread(int id, string slug)
{
    if(string.IsNullOrEmpty(slug)){
         slug = //Get the slug value from db with the given id
         return RedirectToRoute("Thread", new {id = id, slug = slug});
    }
    return View();
}

希望这可以帮助。



文章来源: MVC 4 creating slug type url