摘要:
单例模式:多次实例化结果指向同一个实例 第一种(基于classmethod) class Mysql(object): _instance = None def __init__(self, ip, port): self.ip = ip self.port = port @classmethod 阅读全文
摘要:
好久没发新博客,凑个数。。。 django-debug-toolbar 介绍 django-debug-toolbar 是一组可配置的面板,可显示有关当前请求/响应的各种调试信息,并在单击时显示有关面板内容的更多详细信息。 github地址 文档地址 安装 pip3 install django-d 阅读全文