rails 请求流程图
如图:
1、浏览器向 /users 发送一个请求。
2、rails路由把/users 请求指向到Users controller的index action来处理。
3、index action调用User model来查找所有users(User.all).
The index action asks the User model to retrieve all users (User.all).
4、User model 从数据库中取出所有users。
5、User model向controller返回users列表。
6、controller把所有users放到@users变量中,并传递给index view.
7、view使用erb把页面转成HTML。
8、controller把html发送给浏览器。