在控制器中创建操作链接

发布于 2024-07-19 02:56:12 字数 369 浏览 6 评论 0原文

在我的控制器操作之一中,我生成了一些 XML。 该 XML 中的属性之一是另一个控制器和操作的 href,带有一些参数。 XML 应该看起来像这样:

<projects>
  <project id="42" name="Project X", href="/projects/42"/>
  <!-- etc. -->
</projects>

我不介意 URL 是相对的还是绝对的,但我的问题是:如何以类型安全的方式在控制器代码中生成 URL?

换句话说,如何从控制器执行 HtmlHelper.ActionLink 的操作?

In one of my controller actions, I'm generating some XML. One of the attributes in that XML is an href to another controller and action, with some parameters. The XML should look something like this:

<projects>
  <project id="42" name="Project X", href="/projects/42"/>
  <!-- etc. -->
</projects>

I don't mind if the URL is relative or absolute, but my question is this: how do I generate the URL in the controller code, in a type-safe way?

In other words, how do I do what HtmlHelper.ActionLink does, but from a controller?

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

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

发布评论

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

评论(1

过潦 2024-07-26 02:56:12

使用 Reflector 找到它:

string href = Url.Action("DetailsAsXml", new { projectId = item.Id });

Found it by using Reflector:

string href = Url.Action("DetailsAsXml", new { projectId = item.Id });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文