操作过滤器异常

发布于 2024-11-07 09:16:39 字数 99 浏览 0 评论 0原文

我想对除一个操作之外的每个操作应用操作过滤器。我该如何去做呢?

例如,假设我想将授权过滤器应用于除允许用户登录的操作之外的每个操作。

提前致谢.....

I want to apply an action filter to every action except one. How would I go for it?

For example, suppose I want to apply an authorization filter to every action except the action that lets the user login.

Thanks in advance.....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

思念绕指尖 2024-11-14 09:16:39

从 asp.net mvc 3 开始,您现在可以通过实施 IFilterProvider 接口。您可以在 Phil Haack 的博客。

As of asp.net mvc 3 you can now apply conditional filters by implementing the IFilterProvider interface. You can find a good example almost exactly what you want on Phil Haack's blog.

晒暮凉 2024-11-14 09:16:39

我将在 Global.asax 文件中全局应用操作过滤器,但我将设计过滤器以接受参数以停用它。我将在不需要的操作上应用过滤器,并为其提供停用参数。

I would apply the action filter globally in the Global.asax file but I'll design the filter to accept a parameter to deactivate it. I'll apply the filter on the action where I don't want it and give it the deactivation parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文