> For the complete documentation index, see [llms.txt](https://kelby.gitbook.io/rails-beginner-s-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kelby.gitbook.io/rails-beginner-s-guide/actioncontroller/outside_the_metal/other_metal.md).

# 其它

## Metal 增强模块和 Middleware 的区别

Middleware 是 Action Dispatch 实现的，而 Metal 增强组件是 Action Controller 实现的。

Middleware 是在请求进入 Controller#action 之前，而 Metal 增强组件是在请求进入 Controller#action 之后。

Middleware 需要的环境是 `@env`，作用的是 `app`；而 Metal 增强组件需要的环境是 Controller 和 action，目的主要是对请求做处理，并响应。
