1

我正在尝试在我的语言选择链接中添加一些参数,例如 rel 和 hreflang,但似乎参数数量有限。

有没有其他解决方案可以做到这一点?我知道使用 actionLink 是可行的,但是 url.action 似乎更容易用于图像上的链接......

 <li><a href="@Url.Action(ViewContext.RouteData.Values["action"].ToString(), ViewContext.RouteData.Values["controller"].ToString(), new { culture = "en" }, null, new { rel = "alternate" }, new { hreflang = "en" })"><img class="language-flag" src="~/Content/images/flags/en.png" height="15" width="15" />@MyWebsite.Resources.Language.English</a></li>

谢谢!

4

1 回答 1

1

您应该将它们全部放在对象参数中。

https://docs.microsoft.com/en-us/dotnet/api/system.web.mvc.urlhelper.action?view=aspnet-mvc-5.2#System_Web_Mvc_UrlHelper_Action_System_String_System_String_System_Object_

Url.Action(ActionString, ControllerString, Object)

@Url.Action(ViewContext.RouteData.Values["action"].ToString(),ViewContext.RouteData.Values["controller"].ToString(), new { @culture = "en", @rel = "alternate", hreflang = "en" })
于 2020-03-29T09:03:15.977 回答