Moving to Django 3.0's Field.choices Enumeration Types

栏目: IT技术 · 发布时间: 6年前

内容简介:One of the headline features of Django 3.0 is itsPreviously, Django recommended defining some ‘constants’ on your model class to feed into

Moving to Django 3.0's Field.choices Enumeration Types

One of the headline features of Django 3.0 is its Enumerations for model field choices . They’re a nicer way of defining and constraining model Field.choices .

Previously, Django recommended defining some ‘constants’ on your model class to feed into choices . You would add these as separate class variables and combine them into a list of choices paired with their display strings:

from django.db import models

class Book(models.Model):
    UNPUBLISHED = 'UN'
    PUBLISHED = 'PB'
    STATUS_CHOICES = [
        (UNPUBLISHED, 'Unpublished'),
        (PUBLISHED, 'Published'),
    ]
    status = models.CharField(
        max_length=2,
        choices=STATUS_CHOICES,
        default=UNPUBLISHED,
    )

Then your other could use those constants, for example:

unpublished_books = Book.objects.filter(status=Book.UNPUBLISHED)

If you wanted to use the same set of values for multiple models, you would probably move to the module level:

from django.db import models

UNPUBLISHED = 'UN'
PUBLISHED = 'PB'
STATUS_CHOICES = [
    (UNPUBLISHED, 'Unpublished'),
    (PUBLISHED, 'Published'),
]


class Book(models.Model):
    status = models.CharField(
        max_length=2,
        choices=STATUS_CHOICES,
        default=UNPUBLISHED,
    )


class Pamphlet(models.Model):
    status = models.CharField(
        max_length=2,
        choices=STATUS_CHOICES,
        default=PUBLISHED,
    )

This leaves a bunch of constants related only by their position in the class or module. It’s a bit against The Zen of Python’s final edict:

Namespaces are one honking great idea – let’s do more of those!

It also leaves us missing some useful functionality. For example there’s no easy way to convert a value into its display label.

Packages like django-choices and django-enumfields exist to solve these problems. I’ve also seen a couple custom implementations of similar functionality on other projects.

Django 3.0 now provides a Choices class with two subclasses IntegerChoices and TextChoices . These extend Python’s Enum types with extra constraints and functionality to make them suitable for Field.choices .

To convert our example, we want to subclass TextChoices , because the values are strings stored in a CharField . We then define how names map to values and display labels as class attributes:

from django.db import models


class Status(models.TextChoices):
    UNPUBLISHED = 'UN', 'Unpublished'
    PUBLISHED = 'PB', 'Published'


class Book(models.Model):
    status = models.CharField(
        max_length=2,
        choices=Status.choices,
        default=Status.UNPUBLISHED,
    )


class Pamphlet(models.Model):
    status = models.CharField(
        max_length=2,
        choices=Status.choices,
        default=Status.PUBLISHED,
    )

We can test we converted correctly by checking no migration changes are detected:

$ python manage.py makemigrations --dry-run
No changes detected

If we had added, removed, or reordered any members, this would have been detected as changes in the fields. This is because the migration framework only sees the choices list generated by Status.choices , not the enumeration classes.

QuerySet filters can be updated to use the Choices class:

unpublished_books = Book.objects.filter(status=Status.UNPUBLISHED)

We can also convert values to their display labels easily:

In [2]: book = Book.objects.latest('id')

In [3]: Status(book.status)
Out[3]: <Status.UNPUBLISHED: 'UN'>

In [4]: Status(book.status).label
Out[4]: 'Unpublished'

Clearer and cleaner!

Fin

I hope this helps you enjoy this new Django 3.0 feature. The Enumeration types documentation covers a few more details and is worth a read.

Thanks to Shai Berger, Nick Pope, Marius Felisiak, Carlton Gibson, and all the others responsible for adding it (ticket #27910 ).

—Adam


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

搜索引擎

搜索引擎

W.Bruce Croft、Donald Metzler、Trevor Strohman / 刘挺、秦兵、张宇、车万翔 / 机械工业出版社 / 2010-6-1 / 56.00元

本书介绍了信息检索(IR)中的关键问题,以及这些问题如何影响搜索引擎的设计与实现,并且用数学模型强化了重要的概念。对于网络搜素引擎这一重要的话题,书中主要涵盖了在网络上广泛使用的搜索技术。 本书适用于高等院校计算机科学或计算机工程专业的本科生、研究生,对于专业人士而言,本书也不失为一本理想的入门教材。一起来看看 《搜索引擎》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具