Ruby On Rails 面试题与答案
Question: What do Controllers task in Ruby on Rails?Answer:Once a request comes into the Rails stack, it goes to the routes table to determine which controller and action should be called. Once a controller action is determined the request is routed to the controller and it does the needed processing by connecting with the DB if needed and then it sends control to the View to render the output. So, really the flow for Rails goes somewhat like this: Customer-> Routes-> Controller -> Model(DB) -> Controller -> View -> Customer |
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
这有帮助吗? 是 否
用户评价最有帮助的内容:
- What is Ruby On Rails?
- Why Ruby on Rails?
- Explain how (almost) everything is an object in Ruby.
- What are Gems and which are some of your favorites?
- How would you declare and use a constructor in Ruby?