MVC3动作链接

发布于 2024-11-13 08:10:57 字数 769 浏览 4 评论 0原文

在 MVC3 中,我有一个名为 test 的区域,其默认路由

        context.MapRoute(
            "test_default",
            "test/{controller}/{action}/{id}",
            new {controller="Store", action = "Index", id = UrlParameter.Optional },
            new string[] { "foo.test.Controllers" }
        );

@Html.ActionLink("Retour au magasin", "index", "Store") 生成 localhost:1111/test

在索引页面中,我有一个部分视图,位于文件夹测试/视图/共享 但它永远不是 rendererd,因为找不到该文件夹​​。

链接 http://localhost:1111/test/store/index 效果很好。 如何找到并呈现 http://localhost:1111/test 的部分视图?或者如何获取生成的链接 http://localhost:1111/test/Store/index通过操作链接?

谢谢

in MVC3 I have an area called test with a default route

        context.MapRoute(
            "test_default",
            "test/{controller}/{action}/{id}",
            new {controller="Store", action = "Index", id = UrlParameter.Optional },
            new string[] { "foo.test.Controllers" }
        );

@Html.ActionLink("Retour au magasin", "index", "Store") generates localhost:1111/test

In the index page I have a partial view, located in the folder test/views/shared
But it's never rendererd because the folder is not found.

The link http://localhost:1111/test/store/index works well.
How could I get the partial view found and rendered for the http:/localhost:1111/test? or how can I get the link http://localhost:1111/test/Store/index generated by the actionlink?

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽手叙旧 2024-11-20 08:10:57

看起来您正在将命名空间参数更改为 Area 之外的内容。如果您有测试区域,您的路线可能如下所示:

    context.MapRoute(
        "test_default",
        "test/{controller}/{action}/{id}",
        new {controller="Store", action = "Index", id = UrlParameter.Optional },
        new string[] { "MyWebProject.Areas.Test.Controllers" }
    );

It looks like you're changing your namespace argument to something outside the Area. If you have a test area, your route might look something like this:

    context.MapRoute(
        "test_default",
        "test/{controller}/{action}/{id}",
        new {controller="Store", action = "Index", id = UrlParameter.Optional },
        new string[] { "MyWebProject.Areas.Test.Controllers" }
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文