Ambar GonzalezRendering JSON and SerializationLearning backend development made me realize how information is made available to the frontend. I also recognize that all that information…Sep 13, 2023
Daniel CalvinRails: Nesting Data with Custom Serializers using Active Model SerializersWhat is serialization?Jan 26, 2022
Staci RosalesQuick Set-up: Active Model SerializerActive Record provides a method for sending specified attributes and associations for models with Active Model Serializer (AMS), a Ruby…Aug 13, 2023Aug 13, 2023
Jan BajenaUse lazy relationships to eliminate N+1 queries in your Rails appsLearn how I used batch loading technique to solve N+1 queries problem in Rails apps that use ActiveModel::Serializers gem.Jan 9, 2019Jan 9, 2019
AlexandraRuby on Rails: Using Active Model SerializersSeparation of Concerns is a defining feature of Ruby on Rails as it pushes coders to keep their code organized according to specific…Jul 28, 2023Jul 28, 2023
Ambar GonzalezRendering JSON and SerializationLearning backend development made me realize how information is made available to the frontend. I also recognize that all that information…Sep 13, 2023
Daniel CalvinRails: Nesting Data with Custom Serializers using Active Model SerializersWhat is serialization?Jan 26, 2022
Staci RosalesQuick Set-up: Active Model SerializerActive Record provides a method for sending specified attributes and associations for models with Active Model Serializer (AMS), a Ruby…Aug 13, 2023
Jan BajenaUse lazy relationships to eliminate N+1 queries in your Rails appsLearn how I used batch loading technique to solve N+1 queries problem in Rails apps that use ActiveModel::Serializers gem.Jan 9, 2019
AlexandraRuby on Rails: Using Active Model SerializersSeparation of Concerns is a defining feature of Ruby on Rails as it pushes coders to keep their code organized according to specific…Jul 28, 2023
Luis VasquezUsing Active Model SerializersIn an API, serialization describes the process of specifying which attributes of a record are returned in a JSON response.Jan 2, 2023
Joshua ThompsonGetting the user data you want by using serializersWhile learning ruby on rails my friend and I came across a problem when trying to properly serialize data onto our API. It was an…Mar 29, 2023
Md Sadiqul IslamWhy need to use form Meta class?The Form class can have several attributes and methods that are used to define the form fields, validation rules, and how the form data is…Feb 27, 2023