控制器操作的路径
在视图中使用 Html.ActionLink 来获取控制器操作的正确路径是没有问题的。我只是想知道这在其他层(例如控制器)中是否也可能。我问这个问题是因为我正在递归地生成
并使用一些数据访问来呈现“链接树结构”。谢谢!基督教
It is no problem to use Html.ActionLink in a View to obtain the right path to a controller action. I am just wondering whether this is also possible in other layers (e.g. controller). I am asking this because I am generating an <ul>
recursively with some data access to render a 'link tree structure'. Thanks!
Christian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在控制器中,您可以使用 UrlHelper 创建 url。
这将创建一个字符串,其中包含 html 链接。在示例中,我使用常量来给出正确的操作和控制器,但它当然可以是“正常”字符串。
如果您需要更多场景,请告诉我
In the controller you can use UrlHelper to create url.
This would create a string with html link inside. In the example I use constants to give correct action and controller, but it could of course be a "normal" string.
Let me know if you need more scenarios