26

onResultExecuted メソッドを使用して、カスタム ActionFilterAttribute を使用して詳細をログに記録しようとしている MVC アプリにコントローラーがあります。

このチュートリアルを読んで、独自のアクション フィルターを理解し、作成しました。問題は、コントローラーからアクション フィルターに変数を渡す方法です。

  1. コントローラーが呼び出される入力変数を取得したい。たとえば、ユーザー名/ユーザー ID です。
  2. (状況によっては) コントローラー メソッドによって例外がスローされた場合は、エラーもログに記録したいと思います。

コントローラー -

[MyActionFilter]
public class myController : ApiController {
    public string Get(string x, int y) { .. }
    public string somemethod { .. }
}

アクションフィルター -

public class MyActionFilterAttribute : ActionFilterAttribute {
    public override void onActionExecuted(HttpActionExecutedContext actionExecutedContext) {
        // HOW DO I ACCESS THE VARIABLES OF THE CONTROLLER HERE
        // I NEED TO LOG THE EXCEPTIONS AND THE PARAMETERS PASSED TO THE CONTROLLER METHOD
    }
}

ここで問題を説明できたことを願っています。ここでいくつかの基本的なオブジェクトを見逃している場合は申し訳ありませんが、私はこれにまったく慣れていません。

4

2 に答える 2

75

アプローチ - 1

アクション フィルタ

public class MyActionFilter : ActionFilterAttribute
{
    public override void OnActionExecuted(ActionExecutedContext filterContext)
    {
        base.OnActionExecuted(filterContext);
    }
}

アクション方法

[MyActionFilter]
public ActionResult Index()
{
    ViewBag.ControllerVariable = "12";
    return View();
}

ここに画像の説明を入力

スクリーンショットに注意を払うと、ViewBag情報を見ることができます

アプローチ - 2

アクション フィルタ

public class MyActionFilter : ActionFilterAttribute
{
    //Your Properties in Action Filter
    public string Property1 { get; set; }
    public string Property2 { get; set; }

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        base.OnActionExecuting(filterContext);
    }
}

アクション方法

[MyActionFilter(Property1 = "Value1", Property2 = "Value2")]
public ActionResult Index()
{
    return View();
}
于 2013-08-13T13:04:07.680 に答える