Categories: Ruby on Rails

Understanding the basics of Ruby on Rails: HTTP, MVC, and Routes

Understanding the basics of Ruby on Rails: HTTP, MVC, and Routes

After learning your , you may ask what can you do with programming: AI/Machine Learning? Hardware development? Mobile apps? Or maybe you want to start developing web applications! 🙂

Here we’ll understand the basics of how the web, the routes, and the MVC architecture work using the Ruby on Rails web framework. Let’s dive into the web world.

Before learning web development with Rails, I really recommend learning about .

How does the web work?

The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. — Wikipedia

The HTTP works like a request — response cycle in the client — server model.

We have a web browser (Google Chrome, for example). So we type the www.google.com URL, and the client submits the HTTPrequest (request message) to the server. The server returns the HTTP response (response message — in that case, the response is the HTML from Google’s website).

The client does the request and receives the response from the server. The client handles the UI and user interactions. On the server, we can store and retrieve data (on databases), process logic on the background (workers/jobs), and a lot of other things.

If you want to deeply understand it, I’ll suggest some resources. I am a big fan of Preethi’s posts. Here a series of 3 parts:

The MVC architecture and Rails Routes

Now that we understand how the Web works, we’ll study the MVC architecture and Rails Routes.

MVC stands for Model, View, and Controller.

On this architecture, we have the “separation of the concerns” among Models, Views and, Controllers. Each part has its own responsibility. Let’s dive into each part.

Model

“Maintains the relationship between Object and Database and handles validation, association, transactions”

This means that the model will maintain an extreme relation with the Database. Each model (can) represent a database table (in case of SQL databases). This model object gains capabilities (inherited from ActiveRecord — Rails class) to retrieve, save, edit, and delete data from database table. We use model objects as a layer between our application and the database.

Besides that relation with the database, the model can create validations and associations between models.

View

“A presentation of data in a particular format, triggered by a controller’s decision to present the data.”

This is the presentation of the request’s response. This presentation can be in a bunch of format types: PDF, HTML, JSON, etc. The final result of a view will likely be the user interface (UI) — Part of the “Client.”

For most pages on the web, the views will be an HTML styled with CSS and JS. But we can implement PDFs of user behavior on a Travel digital product to show all employees how people use their website, too.

Controller

“The facility within the application that directs traffic, on the one hand querying the models for specific data, and on the other hand organizing that data (searching, sorting) into a form that fits the needs of a given view.”

The controller is the “Maestro.” It takes care of the flow: uses models to do queries, parses data, and make decisions about in which format you’ll present the data.

MVC & Routes cycle on a Rails application

Just think from the traveler’s perspective. You go to and you see a beautiful page listing a bunch of great articles.

When you type this URL in the browser, it makes a request to the server. In the server, we have the Rails web application. The Rails Router verifies if there is an entry matching the requested URL.

We just need to configure the routes for this line:

This will create RESTful routes for articles. If we run bundle exec rake routes, it will show the list of paths created.

The HTTP verb can be GET, POST, PATCH, PUT, or DELETE. And we know how Rails maps each PATH to the right controller and action. Read more here.

In our case, the server will receive /articles path and GET as the HTTP verb. It will map to ArticlesController and index action.

In the controller ArticlesController we use the modelArticle to get all articles in the database and render the viewindex.html.erb as the server response (the UI).

By convention, this controller will render the view in views/articles/index.html.erb. Basically, it’s a plain HTML file powered by Ruby.

The Rails request-response cycle is one of the first concepts you need to understand when you start learning web development.

The user does stuff (request to the server), the the Rails application has the router to map the URL path to the right controller. In the controller, we can do all things with a model (or more than one model) — meaning getting, saving, editing, deleting data — and render a view to the user.

That’s all!

We learned a lot here. I hope you guys appreciate the content and learn more about how the MVC architecture and routing work on Rails.

This is one more step forward in my journey to learning and mastering Rails and web development. You can see the documentation of my complete journey here on my .

Have fun, and keep learning and coding.

Source

https://medium.freecodecamp.org/understanding-the-basics-of-ruby-on-rails-http-mvc-and-routes-359b8d809c7a

vinova

Share
Published by
vinova

Recent Posts

Guide to Using AI in Recruitment Effectively in 2024

The recruitment picture is changing rapidly, and AI in recruitment is at the forefront of…

1 day ago

What is Multimodal AI? 10 Creative Applications and Real-World Examples

Multimodal AI is a groundbreaking technology that combines multiple modalities, such as text, images, and…

2 days ago

Top 10 AI Applications in the Energy Sector for 2024

Artificial intelligence (AI in the energy) sector is revolutionizing how we produce, distribute, and consume…

3 days ago

Top Mobile App Monetization Strategies for 2024

Nowadays, monetization application is the end game of mobile app development. Whether you're an indie…

4 days ago

Top Reasons Why Mobile Apps Fail and Lessons for Success

Nowadays, many mobile apps fail to make an impact. From poor research to bad user…

5 days ago

Comprehensive Guide to VisionOS App Development 2024 for Beginners

Apple's VisionOS, the operating system powering the Vision Pro headset, is paving the way for…

6 days ago