gpt4 book ai didi

asp.net-mvc - ASP.NET MVC - 如何获取操作的完整路径

转载 作者:行者123 更新时间:2023-12-03 07:44:43 25 4
gpt4 key购买 nike

在 View 内部,我可以获得操作的完整路线信息吗?

如果我在 Controller MyController 中有一个名为 DoThis 的操作。我可以访问 "/MyController/DoThis/" 路径吗?

最佳答案

你的意思是像使用 Action Url 帮助器上的方法:

<%= Url.Action("DoThis", "MyController") %>

或在 Razor 中:

@Url.Action("DoThis", "MyController")

这将为您提供相对 URL (/MyController/DoThis)。

如果您想获取绝对网址(http://localhost:8385/MyController/DoThis):

<%= Url.Action("DoThis", "MyController", null, Request.Url.Scheme, null) %>

关于asp.net-mvc - ASP.NET MVC - 如何获取操作的完整路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6783365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com