问题:
是否有可能知道被调用的动作所期望的参数类型?例如,我有一些action
:
[TestCustomAttr]
public ActionResult TestAction(int a, string b)
{
...
和TestCustomAttr
定义为:
public class TestCustomAttr : System.Web.Mvc.ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
...
因此,当调用TestAction
时,在OnActionExecuting
内,我想知道TestAction
方法所期望的类型。 (例如:在这种情况下,有2个预期参数。一个是int
类型,另一个是string
类型。
实际目的:
实际上我需要更改QueryString
的值。我已经能够获取查询字符串值(通过HttpContext.Current.Request.QueryString
),更改它,然后手动将其添加到ActionParameters
filterContext.ActionParameters[key] = updatedValue;
问题:
目前,我尝试将值解析为int
,如果成功解析,我假设它是int
,所以我进行了需求更改(例如值+ 1),然后添加它行动参数,反对其关键。
qsValue = HttpContext.Current.Request.QueryString[someKey].ToString();
if(Int32.TryParse(qsValue, out intValue))
{
//here i assume, expected parameter is of type `int`
}
else
{
//here i assume, expected parameter is of type 'string'
}
但我想知道确切的预期类型。因为string
可以为"123"
,并且它将被假定为int
并添加为整数参数,从而导致其他参数的空例外。 (反之亦然)。因此,我想将更新后的值解析为精确的预期类型,然后根据其键添加到操作参数。那么,我该怎么做呢?这甚至可能吗?可能Reflection
可能会有所帮助吗?
重要:我愿意接受建议。如果我的方法不能达到实际目的,或者有更好的方法,请分享;)
答案 0 :(得分:5)
您可以从ActionDescriptor获取参数。
public class TestCustomAttr : System.Web.Mvc.ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
var ActionInfo = filterContext.ActionDescriptor;
var pars = ActionInfo.GetParameters();
foreach (var p in pars)
{
var type = p.ParameterType; //get type expected
}
}
}