[PYTHON] [Django version up] The way to convert to string when saving TextFiled has changed

background

If you raise the Django version from 1.11.1 to 2.2, when the value of TextFields saved as a byte string is retrieved, It was supposed to save even the skin as b'...'.

Conclusion

--It was converted to string type using decode, but now it is changed to string type using str (). --If you use str (), the newline character is escaped or even b'' is included in the string.

reference

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] The way to convert to string when saving TextFiled has changed
How to check the version of Django
The easiest way to get started with Django
The easiest way to set up Last-Modified in Flask
update django version 1.11.1 to 2.2
What I did to speed up the string search task
In Django, how to abbreviate the long displayed string as ....