我希望一些链接包含片段标识符。就像这个网站上的一些网址:
调试:IE6 + SSL + AJAX + post form = 404 错误#5626
有没有办法使用 MVC 中的任何内置方法来做到这一点?还是我必须推出自己的 HTML 助手?
我希望一些链接包含片段标识符。就像这个网站上的一些网址:
调试:IE6 + SSL + AJAX + post form = 404 错误#5626
有没有办法使用 MVC 中的任何内置方法来做到这一点?还是我必须推出自己的 HTML 助手?
正如 Brad Wilson 所写,您可以通过简单地连接字符串在视图中构建自己的链接。但是要将片段名称附加到通过 RedirectToAction (或类似的)生成的重定向中,您需要以下内容:
public class RedirectToRouteResultEx : RedirectToRouteResult {
public RedirectToRouteResultEx(RouteValueDictionary values)
: base(values) {
}
public RedirectToRouteResultEx(string routeName, RouteValueDictionary values)
: base(routeName, values) {
}
public override void ExecuteResult(ControllerContext context) {
var destination = new StringBuilder();
var helper = new UrlHelper(context.RequestContext);
destination.Append(helper.RouteUrl(RouteName, RouteValues));
//Add href fragment if set
if (!string.IsNullOrEmpty(Fragment)) {
destination.AppendFormat("#{0}", Fragment);
}
context.HttpContext.Response.Redirect(destination.ToString(), false);
}
public string Fragment { get; set; }
}
public static class RedirectToRouteResultExtensions {
public static RedirectToRouteResultEx AddFragment(this RedirectToRouteResult result, string fragment) {
return new RedirectToRouteResultEx(result.RouteName, result.RouteValues) {
Fragment = fragment
};
}
}
然后,在您的控制器中,您将调用:
return RedirectToAction("MyAction", "MyController")
.AddFragment("fragment-name");
那应该正确生成 URL。
我们正在考虑在下一个版本中包含对此的支持。
在 MVC3 中(可能之前我还没有检查过),您可以使用 UrlHelper.GenerateUrl 传入片段参数。这是我用来包装功能的辅助方法L
public static string Action(this UrlHelper url, string actionName, string controllerName, string fragment, object routeValues)
{
return UrlHelper.GenerateUrl(
routeName: null,
actionName: actionName,
controllerName: controllerName,
routeValues: new System.Web.Routing.RouteValueDictionary(routeValues),
fragment: fragment,
protocol: null,
hostName: null,
routeCollection: url.RouteCollection,
requestContext: url.RequestContext,
includeImplicitMvcValues: true /*helps fill in the nulls above*/
);
}
@多米尼克,
我几乎可以肯定,将它放在路由中会导致路由问题。
@瑞奇,
在 MVC 对此提供支持之前,您可以更加“老派”地了解如何制作路线。例如,您可以转换:
<%= Html.ActionLink("Home", "Index") %>
进入:
<a href='<%= Url.Action("Index") %>#2345'>Home</a>
或者您可以编写自己的助手来完成基本相同的事情。
简短的回答是:不。在 ASP.NET MVC Preview 3 中,没有一流的方法可以在操作链接中包含锚点。与 Rails 的 url_for :anchor 不同,UrlHelper.GenerateUrl(以及使用它的 ActionLink、RedirectToAction 等)没有可以让您编码锚点的神奇属性名称。
正如你所指出的,你可以自己动手做。这可能是最干净的解决方案。
Hackily,您可以在路由中包含一个锚点并在您的参数哈希中指定值:
routes.MapRoute("WithTarget", "{controller}/{action}/{id}#{target}");
...
<%= Html.ActionLink("Home", "Index", new { target = "foo" })%>
这将生成一个类似 /Home/Index/#foo 的 URL。不幸的是,这不适用于出现在 URL 末尾的 URL 参数。因此,这种 hack 仅适用于所有参数都显示为 URL 路径组件的非常简单的情况。
这是一个客户端解决方案,但如果你有可用的 jquery,你可以做这样的事情。
<script language="javascript" type="text/javascript">
$(function () {
$('div.imageHolder > a').each(function () {
$(this).attr('href', $(this).attr('href') + '#tab-works');
});
});
</script>
MVC 5 支持片段标识符。请参阅https://msdn.microsoft.com/en-us/library/dd460522(v=vs.118).aspx和https://msdn.microsoft.com/ActionLink
处的重载zh-CN/图书馆/dd492938(v=vs.118).aspx。