在AuthorizeAttribute中引用通用url参数

发布于 2024-10-20 21:06:04 字数 392 浏览 2 评论 0原文

如果我的操作具有类似 /controller/action/{id} 的路径,我可以通过执行 httpContext.Request.RequestContext.RouteData.Values 在 AuthorizeAttribute 中获取 id [“id”]

相反,如果它类似于 /controller/action?id={id} 我可以通过执行 httpContext.Request.QueryString["id"] 来获取它。

如果它是来自 POST 的表单数据,我还需要另一种方法。

有没有一种方法可以说“获取您将在名称为“id”的参数中放入的内容,无论如何指定路由?”

If my action has a path like /controller/action/{id} I can get id in an AuthorizeAttribute by doing httpContext.Request.RequestContext.RouteData.Values["id"].

Conversely, if it's something like /controller/action?id={id} I can get it by doing httpContext.Request.QueryString["id"].

I'll need yet another way if it's form data from a POST.

Is there a way to say "Get what you would put in the parameter with name 'id', regardless of how the route is specified?"

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

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

发布评论

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

评论(1

巴黎盛开的樱花 2024-10-27 21:06:04
var id = Request.RequestContext.RouteData.Values["id"] ?? Request.Params["id"] as string;

或者如果您想优先考虑 GET 和 POST 参数以支持路由数据:

var id = Request.Params["id"] ?? Request.RequestContext.RouteData.Values["id"] as string;
var id = Request.RequestContext.RouteData.Values["id"] ?? Request.Params["id"] as string;

or if you want to privilege GET and POST parameters in favor of route data:

var id = Request.Params["id"] ?? Request.RequestContext.RouteData.Values["id"] as string;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文