Custom AuthorizeAttribute

前端 未结 3 1180
后悔当初
后悔当初 2020-12-19 18:58

I have a child class of AuthorizeAttribute named CheckArticleExistence.

I would like to set an attribute using the parameter that I receive in the action. Like this:

3条回答
  •  臣服心动
    2020-12-19 19:27

    I think You can get the articleId from the AuthorizationContext, so you don't need to pass it as a property of the attribute.

    You can just do:

    [CheckArticleExistence]
    public ActionResult Tags(int articleId)
    {
    ...
    }
    

提交回复
热议问题