1

假设我有一个名为 artikel 的模型。本文包含 Html“正文”文本。和一个单词的标题。

然后我想制作一个系统,我可以使用一个视图来渲染所有“文章”模型的正文内容。

但使用文章标题道具。为站点创建一个 URL。

所以,如果我有 2 篇文章。一个标题为“关于”,另一个标题为“联系方式”

我最终会得到像“site/About”和“site/Contact”这样的Url

而且由于我试图从数据源中进行此操作,因此我需要一些方法来实现此动态。所以我不能只为每个 artikel 制作控制器。(如果我有很多文章,那会很糟糕)

我一直在尝试在我的 RouteConfig 中设置 mapRoute。但无论如何都找不到可以做到这一点。

我在网上搜索它,并尝试了这些解决方案。

http://www.dotnet-stuff.com/tutorials/aspnet-mvc/understanding-url-rewriting-and-url-attribute-routing-in-asp-net-mvc-mvc5-with-examples

.Net MVC 中的 URL 重写

https://www.youtube.com/watch?v=h405AbJyiH4

https://forums.asp.net/t/2094370.aspx?How+To+Create+URL+Rewrite+In+ASP+NET+C+using+MVC+

但没有运气。任何知道如何做到这一点的人,或者可以帮助我朝着正确的方向前进。?

4

1 回答 1

0

有很多方法可以解决这个问题,例如可以将 Artikel 设置为默认控制器、创建新路由或自定义路由等。我建议在website/artikel/pagename查找文章的 url 中包含 artikel。

public static void RegisterRoutes(RouteCollection routes)
{
    routes.MapRoute(
        name: "Artikel",
        url: "artikel/{id}",
        defaults: new { controller = "Artikel", action = "Index", id = UrlParameter.Optional }
    );

    //default and other routes go here, after Artikel
}

在 Artikel 控制器中:

public ActionResult Index(string id)
{
    Artikel model = Database.GetArticle(id);
    return View(model);
}

模型:

public class Artikel
{
    public string Title { get; set; }
    public string Body { get; set; }
}

和观点:

@model MyApplication.Models.Artikel
@{
    ViewBag.Title = "Index";
}

<h2>@Model.Title</h2>
<span>@Model.Body</span>
于 2018-06-13T14:09:36.490 回答