添加文章时出现了一个UnicodeEncodeError乱码问题

在添加文章时,抛出了异常:

Django:(博客系统)添加文章(中文)出现UnicodeEncodeError乱码

解决方案,修改manage.py(添加import sys reload(sys) sys.setdefaultencoding('utf-8')):

#!/usr/bin/env python
import os
import sys

reload(sys)
sys.setdefaultencoding('utf-8')

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myblog.settings")
    try:
        from django.core.management import execute_from_command_line
    except ImportError:
        # The above import may fail for some other reason. Ensure that the
        # issue is really that Django is missing to avoid masking other
        # exceptions on Python 2.
        try:
            import django
        except ImportError:
            raise ImportError(
                "Couldn't import Django. Are you sure it's installed and "
                "available on your PYTHONPATH environment variable? Did you "
                "forget to activate a virtual environment?"
            )
        raise
    execute_from_command_line(sys.argv)

 

相关文章:

  • 2022-12-23
  • 2021-08-22
  • 2021-08-26
  • 2022-12-23
  • 2021-09-12
  • 2021-06-24
  • 2022-12-23
  • 2021-11-21
猜你喜欢
  • 2021-10-22
  • 2022-12-23
  • 2022-03-05
  • 2021-11-25
  • 2021-07-25
  • 2021-08-25
  • 2022-12-23
相关资源
相似解决方案