gpt4 book ai didi

asp.net-mvc - ASP.NET MVC ActionFilter 参数绑定(bind)

转载 作者:行者123 更新时间:2023-12-03 23:50:15 26 4
gpt4 key购买 nike

如果您在 Action 方法中有一个模型绑定(bind)参数,那么如何在 Action 过滤器中获取该参数?

[MyActionFilter]
public ActionResult Edit(Car myCar)
{
...
}

public class MyActionFilterAttribute : ActionFilterAttribute
{
public void OnActionExecuted(ActionExecutedContext filterContext)
{
//I want to access myCar here
}

}

无论如何都可以在不通过 Form 变量的情况下获得 myCar 吗?

最佳答案

不确定 OnActionExecuted 但您可以在 OnActionExecuting 中执行此操作:

public class MyActionFilterAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
// I want to access myCar here

if(filterContext.ActionParameters.ContainsKey("myCar"))
{
var myCar = filterContext.ActionParameters["myCar"] as Car;

if(myCar != null)
{
// You can access myCar here
}
}
}
}

关于asp.net-mvc - ASP.NET MVC ActionFilter 参数绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1961415/

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