指定需要授权
我对 MVC (但不是 ASP.NET)有点陌生。 MVC 中是否有与 ASP.NET 中类似的概念来指定 URL 授权?
这个问题确实与 Facebook C# SDK 有关 - 他们引入了 [CanvasAuthorize]
属性,该属性适用于 MVC 应用程序中的控制器。如何将 [CanvasAuthorize]
应用于一组控制器而不将此属性附加到每个控制器?
谢谢,
丹
I'm somewhat new to MVC (but not ASP.NET). Is there a similar concept in MVC as there is in ASP.NET to specify URL authorization?
The question is really related to Facebook C# SDK - they have introduced the [CanvasAuthorize]
attribute, which applies to a controller in the MVC app. How can I apply [CanvasAuthorize]
to a set of controllers without attaching this attribute to each one?
Thanks,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让所有这些控制器都派生自基本控制器,然后使用属性来装饰该基本控制器,这将使其适用于所有控制器和操作。在 ASP.NET MVC 3 中,您还可以使用 全局操作过滤器 和 自定义过滤器提供程序。
You could have all those controllers derive from a base controller and then decorate this base controller with the attribute which will make it apply to all controllers and actions. In ASP.NET MVC 3 you also have the possibility to use global action filters and custom filter providers.