- 论坛徽章:
- 0
|
- import time
- from lib.dbtools import MySql
- class Member():
- __column__ = { 'uid':0,
- 'username':'',
- 'email':'aa@bb.com',
- 'password':'',
- 'birthday':'1970-01-01',
- 'location':'',
- 'regip': '',
- 'regdate':int(time.time()),
- 'lastloginip':'',
- 'lastlogindate':int(time.time()),
- 'status' : 0,
- 'logincount' : 0,
- 'groupid' : -1,
- 'credit' : 0,
- 'gender': 0,
- 'avatar':''
- }
- def __init__(self,db=None):
- self.db = db
- print '*'*10,'__init__','*'*10
- print self.db #为什么这里为None了
- print '*'*10,'__init__','*'*10
- def __getattr__(self,key):
- key = key.lower().strip()
- if self.__column__.has_key(key):
- return self.__column__[key]
- def __setattr__(self,key,value):
- key = key.lower().strip()
- if self.__column__.has_key(key):
- self.__column__[key] = value
-
- def GetMemberById(self,id):
- print self.db
- def GetMemberByUserName(self,username):
- print self.db
- def Update(self,condition,**kwargs):
- pass
- def Add(self):
- print self.db
- def __repr__(self):
- return '__repr__'
- def __call__(self):
- return 'call'
- def __str__(self):
- return self.username
-
- if __name__ == '__main__':
- mysql = MySql(dbhost = 'localhost',dbname='docute',dbuser = 'root',dbpwd='mysql123456')
- mysql.connect()
- print mysql #这里是有值的
- u = Member(mysql)
- print mysql
复制代码 在Member类的构造函数中将mysql的实例传进去,并赋值给了Member的db变量,
但在Member的__init__方法里,print self.db却是None,这是为什么?
运行截图
|
|