IActionFilter OnActionExecuting 函数之后的操作调用中出现问题
我正在使用 IActionFilter OnActionExecuting 函数进行一些安全检查,但是当它调用它时,它会检查一个条件,如果该条件失败,我想将其重定向到登录操作,但问题是,它也会调用我不想执行的下一个操作如果该条件不满足。
I am using IActionFilter OnActionExecuting function for some security check, but when it calls it check a condition and if that conditions fails i want to redirect it to login action but the problem is, it call the next action as well which i donot want to execute if that conditions is fails.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以完成这项工作:
确保您的属性源自 ActionFilterAttribute 。
This should do the job:
Make sure your attribute derives from ActionFilterAttribute.