当我使用T4MVC直接在Post Area中的ActionName时,但是当我看到渲染html代码时它不起作用
<a class="nav-link" href="@Url.Action(MVC.Post.Admin.ActionNames.Posts,MVC.Post.Admin.Name, new {area = MVC.Post.Name})"><i class="icon-user-follow"></i>showPost</a>
当我在Firefox中看到View Page Source时 我看到这段代码
<a href="/?area=Post">showPost</a>
请让我知道我在做什么。
由于
答案 0 :(得分:0)
只需使用MVC.AreaName.SomeController.SomeAction()
href="@Url.Action(result: MVC.Post.Admin.Posts())"