Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

django serializer

# serialization in django

from rest_framework import serializers
from .models import Product

class ProductSerializers(serializers.ModelSerializer):
    class Meta:
        model = Product
        fields = '__all__'
        
# adding extra fields, that are in models
    def to_representation(self, instance):
      data = super().to_representation(instance)
      data['is_on_sale'] = instance.is_on_sale()
      data['current_price'] = instance.current_price()
      return data
Comment

Django serializer,


class SnippetSerializer(serializers.Serializer):
    id = serializers.IntegerField(read_only=True)
    title = serializers.CharField(required=False, allow_blank=True, max_length=100)
    code = serializers.CharField(style={'base_template': 'textarea.html'})
    linenos = serializers.BooleanField(required=False)
    language = serializers.ChoiceField(choices=LANGUAGE_CHOICES, default='python')
    style = serializers.ChoiceField(choices=STYLE_CHOICES, default='friendly')

    def create(self, validated_data):
        """
        Create and return a new `Snippet` instance, given the validated data.
        """
        return Snippet.objects.create(**validated_data)

    def update(self, instance, validated_data):
        """
        Update and return an existing `Snippet` instance, given the validated data.
        """
        instance.title = validated_data.get('title', instance.title)
        instance.code = validated_data.get('code', instance.code)
        instance.linenos = validated_data.get('linenos', instance.linenos)
        instance.language = validated_data.get('language', instance.language)
        instance.style = validated_data.get('style', instance.style)
        instance.save()
        return instance
Comment

what is serializer in django

Serializers in Django REST Framework are responsible for converting objects into data types understandable by javascript and front-end frameworks.
Serializers also provide deserialization, allowing parsed data to be converted back into complex types,
after first validating the incoming data.
Comment

PREVIOUS NEXT
Code Example
Python :: python random numbers 
Python :: python decorator class method 
Python :: python look for image on screen 
Python :: cosine similarity numpy 
Python :: append element to list py 
Python :: object python 
Python :: Python list function tutorial 
Python :: flow of control in python 
Python :: simple bmi calculator using python 
Python :: reading from a text file 
Python :: regex python 
Python :: read user input python 
Python :: duplicate remove 
Python :: cast as float python 
Python :: Maximum sum subarray of size ‘K’ 
Python :: map in python 3 
Python :: matplotlib units of scatter size 
Python :: why is c faster than python 
Python :: spark mllib tutorial 
Python :: python nested object to dict 
Python :: or in if statement python 
Python :: scikit learn 
Python :: how to check a string in if statement python 
Python :: python double underscore methods 
Python :: import from parent directory in python setup 
Python :: setup vs code for python 
Python :: what are for loops 
Python :: buble short 
Python :: find_dir 
Python :: what is a rare earth 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =