Select Page

Tutorials Tagged with: params

Beginner’s Guide: Understanding Rails Path Parameters

Beginner’s Guide: Understanding Rails Path Parameters

When building web applications, the ability to handle and manipulate dynamic data is essential. In Ruby on Rails, path parameters are a powerful tool that allow developers to capture variable parts of a URL and use them in the application's logic. Path parameters are...

Securing Rails Params with params.require & params.permit

Securing Rails Params with params.require & params.permit

Ruby on Rails is a popular web application framework that uses parameters (often abbreviated as "params") to pass data between a user and the server. However, it's essential to ensure that the data passed through params is safe and secure. In this blog post, we'll...