[PYTHON] [Django version up] Die Methode zum Konvertieren in einen String beim Speichern von TextFiled wurde geändert.

Hintergrund

Wenn Sie die Version von Django von "1.11.1" auf "2.2" erhöhen, wenn der Wert der als Byte-Zeichenfolge gespeicherten TextFields abgerufen wird, Es sollte sogar die Haut als "b" ... "retten.

Fazit

Referenz

version 1.11.1

django.db.models.fields.py


from django.utils.encoding import (
    force_bytes, force_text, python_2_unicode_compatible, smart_text,
)

class TextField(Field):
    description = _("Text")

    def to_python(self, value):
        if isinstance(value, six.string_types) or value is None:
            return value
        return force_text(value)

django.utils.encoding.py


def force_text(s, encoding='utf-8', strings_only=False, errors='strict'):
    """
    Similar to smart_text, except that lazy instances are resolved to
    strings, rather than kept as lazy objects.

    If strings_only is True, don't convert (some) non-string-like objects.
    """
    # Handle the common case first for performance reasons.
    if issubclass(type(s), six.text_type):
        return s
    if strings_only and is_protected_type(s):
        return s
    try:
        if not issubclass(type(s), six.string_types):
            if six.PY3:
                if isinstance(s, bytes):
                    s = six.text_type(s, encoding, errors)
                else:
                    s = six.text_type(s)
            elif hasattr(s, '__unicode__'):
                s = six.text_type(s)
            else:
                s = six.text_type(bytes(s), encoding, errors)
        else:
            # Note: We use .decode() here, instead of six.text_type(s, encoding,
            # errors), so that if s is a SafeBytes, it ends up being a
            # SafeText at the end.
            s = s.decode(encoding, errors)
    except UnicodeDecodeError as e:
        if not isinstance(s, Exception):
            raise DjangoUnicodeDecodeError(s, *e.args)
        else:
            # If we get to here, the caller has passed in an Exception
            # subclass populated with non-ASCII bytestring data without a
            # working unicode method. Try to handle this without raising a
            # further exception by individually forcing the exception args
            # to unicode.
            s = ' '.join(force_text(arg, encoding, strings_only, errors)
                         for arg in s)
    return s

version 2.2

django.db.models.fields.py


class TextField(Field):
    description = _("Text")

    def to_python(self, value):
        if isinstance(value, str) or value is None:
            return value
        return str(value)

Recommended Posts

[Django version up] Die Methode zum Konvertieren in einen String beim Speichern von TextFiled wurde geändert.
So überprüfen Sie die Version von Django
Der einfachste Weg, um mit Django zu beginnen
Der einfachste Weg, um Last-Modified in Flask einzurichten
Aktualisieren Sie die Django-Version 1.11.1 auf 2.2
Was ich getan habe, um die String-Suchaufgabe zu beschleunigen
Wie man in Django die angezeigte lange Zeichenkette in der Mitte abkürzt ....