摘要:
一、单例模式 #实习__init__函数之前会先执行__new__函数,在__new__中判断类是否有进行实例化 #如果有则使用之前实例化的数据进行实例化 class Singleton(object): def __init__(self): self.a =100 def __new__(cls 阅读全文
摘要:
实现django评论树使用了三种方式 第一支种方式通过递归实现 缺点:每次查找parent_id的时候都要在ret所有的元素里面找一遍,找不到再在元素的children中寻找,一直找到为止 comment_list = [ {'id': 1, 'content': 'Python最牛逼', 'use 阅读全文