改变 MVC 文化

发布于 2024-08-23 10:27:43 字数 201 浏览 7 评论 0原文

我在 MVC 应用程序中使用基于 URL 的本地化逻辑。 因此,默认路由为 mysite/someControler,本地化路由为 mysite/en-US/someControler。

“en-US”是具有默认值的“culture”参数的值。

我想知道有什么通用方法可以在不同文化之间进行切换,并保留所有 url 路由值和参数?

谢谢

I'm using URL based localization logic in my MVC app.
so, default route would be mysite/someControler, and localized route would be mysite/en-US/someControler.

"en-US" is value for "culture" parameter which has default value.

I'm wondering what is there any generic way to switch between cultures, and keep all the url route values and parameters?

Thanks

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

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

发布评论

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

评论(1

哑剧 2024-08-30 10:27:43

我做一些简单的事情:
在我的基本控制器(所有其他控制器都继承自它)中,我设置了以下 ViewData 位:

    If Request.Path.Contains("/en/") Then
        ViewData("PathEs") = Request.Path.Replace("/en/", "/es/")
        ViewData("PathPt") = Request.Path.Replace("/en/", "/pt/")
    ElseIf Request.Path.Contains("/pt/") Then
        ViewData("PathEn") = Request.Path.Replace("/pt/", "/en/")
        ViewData("PathEs") = Request.Path.Replace("/pt/", "/es/")
    Else
        ViewData("PathEn") = Request.Path.Replace("/es/", "/en/")
        ViewData("PathPt") = Request.Path.Replace("/es/", "/pt/")
    End If

然后在母版页中

 <div id="langbar">
    <% if not string.isnullorempty(ViewData("PathEs")) then %>
       <a href="<%= ViewData("PathEs") %>">Español</a>
    <% end  if %>
    <% if not string.isnullorempty(ViewData("PathEn")) then %>
       <a href="<%= ViewData("PathEn") %>">English</a>
    <% end  if %>
    <% if not string.isnullorempty(ViewData("PathPt")) then %>
       <a href="<%= ViewData("PathPt") %>">Portugues</a>
    <% end  if %>
</div>

不太聪明,但如果您要处理很少的语言,则可以很好地完成工作(您当然可以优化这两个例程)

I do something simple:
In my base controller (all other controllers inherits from it) I set the following ViewData bits:

    If Request.Path.Contains("/en/") Then
        ViewData("PathEs") = Request.Path.Replace("/en/", "/es/")
        ViewData("PathPt") = Request.Path.Replace("/en/", "/pt/")
    ElseIf Request.Path.Contains("/pt/") Then
        ViewData("PathEn") = Request.Path.Replace("/pt/", "/en/")
        ViewData("PathEs") = Request.Path.Replace("/pt/", "/es/")
    Else
        ViewData("PathEn") = Request.Path.Replace("/es/", "/en/")
        ViewData("PathPt") = Request.Path.Replace("/es/", "/pt/")
    End If

And then in the Master Page

 <div id="langbar">
    <% if not string.isnullorempty(ViewData("PathEs")) then %>
       <a href="<%= ViewData("PathEs") %>">Español</a>
    <% end  if %>
    <% if not string.isnullorempty(ViewData("PathEn")) then %>
       <a href="<%= ViewData("PathEn") %>">English</a>
    <% end  if %>
    <% if not string.isnullorempty(ViewData("PathPt")) then %>
       <a href="<%= ViewData("PathPt") %>">Portugues</a>
    <% end  if %>
</div>

Not too smart, but get the job done well if your are dealing with few langs (you sure can optimize both rutines)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文