在控制器中创建操作链接
在我的控制器操作之一中,我生成了一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Reflector 找到它:
Found it by using Reflector: