如何通过ActionLink使用资源?
如何在ActionLink中整合资源?当我导航到注入文化语言的路线时,我希望标题显示翻译。但我不知道如何将翻译放入 ActionLink 中。
How to integrate resources in an ActionLink? I want the title to to display a translation when I navigate to a route where I inject the culture-language. But I do not know how to get the translation into the ActionLink.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许我错过了一些东西。但您应该添加一条简单的路线,如下所示。
之后,您必须创建一个 ActionFilter 来根据请求设置区域性。
最后在视图中使用ActionLink,如下所示。
上面的代码片段演示了一个简单的代码片段。您可以在此处找到更多信息
以及在 ASP.NET MVC 视图中使用资源的简单方法,在这里。
Maybe I'm missing something. But you should add a simple route as follows.
Afterward, you have to create an ActionFilter to set the culture on request.
At last in the view, use ActionLink as follows.
The above code snippet demonstrated a simple one. You can find more information here
and a simple way to use resources in ASP.NET MVC view, here.