使用 Url.Action 时如何阻止区域自动添加到 URL 中?

发布于 2025-01-10 18:47:59 字数 470 浏览 0 评论 0原文

调用此方法的控制器位于 Areas/AdminPortal 中,但我试图调用不在 Admin Portal 中的控制器操作。我有这段代码,但它会自动将 /AdminPortal 分配给 url 的开头。

string tokenVerificationUrl = Url.Action(nameof(AccountController.VerifyEmail).AspName(), nameof(AccountController).AspName(),
            new {id = user.Id, token = emailConfirmationToken }, Request.Scheme);

返回 localhost:1234/AdminPortal/Account/VerifyEmail/tokenValue

我希望它返回 localhost:1234/Account/VerifyEmail/tokenValue

The controller that calls this method is in Areas/AdminPortal, but I am trying to call a controller action that is not in Admin Portal. I have this code but it automaticaly assigns /AdminPortal to the start of the url.

string tokenVerificationUrl = Url.Action(nameof(AccountController.VerifyEmail).AspName(), nameof(AccountController).AspName(),
            new {id = user.Id, token = emailConfirmationToken }, Request.Scheme);

Returns localhost:1234/AdminPortal/Account/VerifyEmail/tokenValue

I want it to return localhost:1234/Account/VerifyEmail/tokenValue

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

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

发布评论

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

评论(1

风情万种。 2025-01-17 18:47:59

要删除该区域,只需将 area = "" 添加到传递的值中即可。

string tokenVerificationUrl = Url.Action(nameof(AccountController.VerifyEmail).AspName(), nameof(AccountController).AspName(),
        new { area = "", id = user.Id, token = emailConfirmationToken }, Request.Scheme);

To remove the area, simply add area = "" to the values being passed.

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