Rails 有没有办法拦截控制器请求?
我不认为 Rails 将其称为拦截器,但我不知道要搜索什么。
在 Java/Spring 中,您可以创建在 MVC 框架中的任何控制器操作之前和之后调用的拦截器。这使得您可以轻松地为每个请求将数据添加到模型中,因此您不必不断将其添加到 50 个控制器中的每一个中。
我不得不大胆猜测,并说 Rails 有一些东西可以实现相同的效果......但我不知道它叫什么。
愿意分享吗? :)
I don't think Rails calls it an interceptor, but I don't know what to search for.
In Java/Spring, you can create Interceptors that are called before and after any controller action in the MVC framework. This makes it easy to add data to the model for every request, so you don't have to keep adding it to each of your 50 controllers.
I have to take a wild guess and say Rails has something to do achieve the same effect... but I have no idea what it is called.
Care to share? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的称为过滤器。
What you are looking for is called Filters.