ASP.Net MVC:如何结合区域和本地化

发布于 2024-12-29 06:05:37 字数 459 浏览 1 评论 0 原文

对于广泛的应用程序,我需要使用本地化。我计划使用此方法进行本地化: http://geekswithblogs.net/shaunxu/archive/2010/05/06/localization-in-asp.net-mvc-ndash-3-days-investigation-1-day.aspx

但对于这个项目我还需要使用 Area,它们定义了自己的文件。

有没有一种方法可以让我不重新定义 URI 中的语言变量(区域中的 {lang})?

我觉得每次使用 url 进行本地化时都必须重新声明,这对我来说似乎很糟糕 ?

我可以做什么来避免这种情况

For an wide application, I need to use localization. I'm planning to use this method for the localization: http://geekswithblogs.net/shaunxu/archive/2010/05/06/localization-in-asp.net-mvc-ndash-3-days-investigation-1-day.aspx

But for this project I also need to use Area, which are defining their own files.

Is there a way that I can use to not redefine the language variable in URI (the {lang} in area?

I feel like I've to redeclare each time how the localization using the url works, and this seems to be bad to me.

What can I do to avoid this?

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

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

发布评论

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

评论(1

明月夜 2025-01-05 06:05:37

就 SEO 而言,使用 url 参数进行本地化是最好的。缺点是您必须为所有网址定义它。另一种可能性是使用 cookie 或会话来存储当前语言,在这种情况下您不需要将其传递给所有 url。这是一个指南说明了这一点。更容易开发,但不利于SEO。

In terms of SEO using an url parameter for localization is the best. The drawback is that you will have to define it for all your urls. Another possibility is to use cookies or session to store the current language in which case you don't need to pass it to all urls. Here's a guide which illustrates this. Easier to develop but not good for SEO.

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