[Django] restframeworkのserializerの書き下しをサボる
2670 ワード
restframeworkを使ってシンプルなCRUDをするサーバーを建てるとき、単純にDBと一対一対応するシリアライザはこのようにすればいちいち書き下さなくて済む。
from django.db import models
from rest_framework import serializers
from my_app.models import Company # 開発するアプリで使うモデル
def _create_vanilla_serializer(
table_cls: Type[models.Model]) -> Type[serializers.ModelSerializer]:
def _list_field_names(table_cls):
return tuple(map(lambda f: f.name, table_cls._meta.fields))
class VanillaSerializer(serializers.ModelSerializer):
class Meta:
model = table_cls
fields = _list_field_names(table_cls)
return VanillaSerializer
CompanySerializer = _create_vanilla_serializer(Company)
Author And Source
この問題について([Django] restframeworkのserializerの書き下しをサボる), 我々は、より多くの情報をここで見つけました https://qiita.com/nkennek/items/5faba0bdfbe3dc25130f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .