gpt4 book ai didi

asp.net-mvc - 如何从 AuthorizationContext 获取 MVC Action 参数?

转载 作者:行者123 更新时间:2023-12-01 10:00:00 25 4
gpt4 key购买 nike

我目前正在尝试编写自定义身份验证过滤器,我需要访问作为参数传递给过滤器中操作的 dto。假设我有这样的 Action

[AuthenticateProfile]
public ActionResult EditProfile(ProfileDTO profileDto)
{
if (ModelState.IsValid)
{
// Do crazy stuff
}

return something....
}

我需要根据 profiledto 对象内部的一些属性进行身份验证。

我想知道如何在我的过滤器中从 AuthorizationContext 获取这个对象。

最佳答案

我是这样做的:

var parameters = filterContext.ActionDescriptor.GetParameters();
var values = parameters.Select(s => new
{
Name = s.ParameterName,
Value = filterContext.HttpContext.Request[s.ParameterName]
});

关于asp.net-mvc - 如何从 AuthorizationContext 获取 MVC Action 参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17640926/

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