你好,
有没有一种简单的方法可以为特定操作生成完整的 URL?我试过这个:
urlHelper.Action("Action", "Controller")
但这确实会生成一个“\”。
最好的祝福
编辑1:我试过这个:
urlHelper.Action("List", "Ad", null, "http");
但它只返回:localhost:16055。我期待像 localhost:16055/Ad/List 这样的东西?
你好,
有没有一种简单的方法可以为特定操作生成完整的 URL?我试过这个:
urlHelper.Action("Action", "Controller")
但这确实会生成一个“\”。
最好的祝福
编辑1:我试过这个:
urlHelper.Action("List", "Ad", null, "http");
但它只返回:localhost:16055。我期待像 localhost:16055/Ad/List 这样的东西?
使用 Html.ActionLink("Link Title", "Action", "Controller")
要生成完整链接,请使用:
@Html.ActionLink("Link Title", "Action", "Controller", "http", "www.mysampledomain.com",
"_blank", new {id = paramValue}, new { @class="someClass" })
那是具有您可以指定的所有参数的扩展重载。看看这篇 MSDN 文章http://msdn.microsoft.com/en-us/library/dd492938.aspx
要从 Controller 生成,请使用以下代码:
var url = UrlHelper.GenerateUrl(null, "MyAction", "MyController", "http", "www.mydomain.com", String.Empty, null, RouteTable.Routes, this.ControllerContext.RequestContext, false);
url 变量将包含您的 URL 的字符串表示形式。您可以将其存储在 ViewBag 中,例如:
ViewBag.MyUrl = UrlHelper.GenerateUrl(null, "MyAction", "MyController", "http", "www.mydomain.com", String.Empty, null, RouteTable.Routes,
this.ControllerContext.RequestContext, false);
从视图将其称为:
@ViewBag.MyUrl
应该是这样的。
Url.action 生成一个相对的 url。要生成绝对 url,您可以查看以下内容:如何在 ASP.NET MVC 中找到操作的绝对 url?